Kaydet (Commit) 25e44616 authored tarafından Neal Norwitz's avatar Neal Norwitz

Remove references to stdwin which was removed long ago.

üst 7072559d
...@@ -3,10 +3,8 @@ This directory contains some demonstrations of the thread module. ...@@ -3,10 +3,8 @@ This directory contains some demonstrations of the thread module.
These are mostly "proof of concept" type applications: These are mostly "proof of concept" type applications:
Generator.py Generator class implemented with threads. Generator.py Generator class implemented with threads.
find.py Parallelized "find(1)" (looks for directories).
sync.py Condition variables primitives by Tim Peters. sync.py Condition variables primitives by Tim Peters.
telnet.py Version of ../sockets/telnet.py using threads. telnet.py Version of ../sockets/telnet.py using threads.
wpi.py Version of ../scripts/pi.py using threads (needs stdwin).
Coroutine.py Coroutines using threads, by Tim Peters (22 May 94) Coroutine.py Coroutines using threads, by Tim Peters (22 May 94)
fcmp.py Example of above, by Tim fcmp.py Example of above, by Tim
......
...@@ -209,7 +209,6 @@ LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \ ...@@ -209,7 +209,6 @@ LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
lib/libmd5.tex \ lib/libmd5.tex \
lib/libsha.tex \ lib/libsha.tex \
lib/libhmac.tex \ lib/libhmac.tex \
lib/libstdwin.tex \
lib/libsgi.tex \ lib/libsgi.tex \
lib/libal.tex \ lib/libal.tex \
lib/libcd.tex \ lib/libcd.tex \
......
...@@ -431,8 +431,6 @@ and how to embed it in other applications. ...@@ -431,8 +431,6 @@ and how to embed it in other applications.
% OTHER PLATFORM-SPECIFIC STUFF % OTHER PLATFORM-SPECIFIC STUFF
% ============= % =============
%\input{libstdwin} % STDWIN ONLY
\input{libsgi} % SGI IRIX ONLY \input{libsgi} % SGI IRIX ONLY
\input{libal} \input{libal}
\input{libcd} \input{libcd}
......
This diff is collapsed.
...@@ -34,12 +34,11 @@ import getopt ...@@ -34,12 +34,11 @@ import getopt
import glob import glob
import os import os
import re import re
import string
import sys import sys
REMOVE_DIRS = ["dos-8x3", "encodings", "distutils", REMOVE_DIRS = ["encodings", "distutils",
"lib-old", "lib-stdwin", "test"] "lib-old", ""test"]
def main(): def main():
...@@ -156,17 +155,17 @@ def main(): ...@@ -156,17 +155,17 @@ def main():
else: else:
modules = modules_by_name.keys() modules = modules_by_name.keys()
modules.sort() modules.sort()
print string.join(modules, "\n") print "\n".join(modules)
def ignore_from_modulelist(data, ignore_dict): def ignore_from_modulelist(data, ignore_dict):
for name in string.split(data): for name in data.split():
ignore_dict[name] = name ignore_dict[name] = name
def ignore_from_idx(data, ignore_dict): def ignore_from_idx(data, ignore_dict):
data = string.replace(data, r"\hackscore {}", "_") data = data.replace(r"\hackscore {}", "_")
rx = re.compile(r"\\indexentry\s*{([^@]*)@") rx = re.compile(r"\\indexentry\s*{([^@]*)@")
for line in string.split(data, "\n"): for line in data.split("\n"):
m = rx.match(line) m = rx.match(line)
if m: if m:
name = m.group(1) name = m.group(1)
......
...@@ -2072,12 +2072,6 @@ zipfile Read & write PK zipped files. ...@@ -2072,12 +2072,6 @@ zipfile Read & write PK zipped files.
sha Interface to the SHA message digest algorithm sha Interface to the SHA message digest algorithm
HMAC Keyed-Hashing for Message Authentication -- RFC 2104. HMAC Keyed-Hashing for Message Authentication -- RFC 2104.
* Stdwin * Standard Window System
stdwin Standard Window System interface
stdwinevents Stdwin event, command, and selection constants
rect Rectangle manipulation operations
* SGI IRIX * (4 & 5) * SGI IRIX * (4 & 5)
al SGI audio facilities al SGI audio facilities
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment