Commit 25e44616 authored by Neal Norwitz's avatar Neal Norwitz

Remove references to stdwin which was removed long ago.

parent 7072559d
......@@ -3,10 +3,8 @@ This directory contains some demonstrations of the thread module.
These are mostly "proof of concept" type applications:
Generator.py Generator class implemented with threads.
find.py Parallelized "find(1)" (looks for directories).
sync.py Condition variables primitives by Tim Peters.
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)
fcmp.py Example of above, by Tim
......
......@@ -209,7 +209,6 @@ LIBFILES= $(MANSTYLES) $(INDEXSTYLES) $(COMMONTEX) \
lib/libmd5.tex \
lib/libsha.tex \
lib/libhmac.tex \
lib/libstdwin.tex \
lib/libsgi.tex \
lib/libal.tex \
lib/libcd.tex \
......
......@@ -431,8 +431,6 @@ and how to embed it in other applications.
% OTHER PLATFORM-SPECIFIC STUFF
% =============
%\input{libstdwin} % STDWIN ONLY
\input{libsgi} % SGI IRIX ONLY
\input{libal}
\input{libcd}
......
This diff is collapsed.
......@@ -34,12 +34,11 @@ import getopt
import glob
import os
import re
import string
import sys
REMOVE_DIRS = ["dos-8x3", "encodings", "distutils",
"lib-old", "lib-stdwin", "test"]
REMOVE_DIRS = ["encodings", "distutils",
"lib-old", ""test"]
def main():
......@@ -156,17 +155,17 @@ def main():
else:
modules = modules_by_name.keys()
modules.sort()
print string.join(modules, "\n")
print "\n".join(modules)
def ignore_from_modulelist(data, ignore_dict):
for name in string.split(data):
for name in data.split():
ignore_dict[name] = name
def ignore_from_idx(data, ignore_dict):
data = string.replace(data, r"\hackscore {}", "_")
data = data.replace(r"\hackscore {}", "_")
rx = re.compile(r"\\indexentry\s*{([^@]*)@")
for line in string.split(data, "\n"):
for line in data.split("\n"):
m = rx.match(line)
if m:
name = m.group(1)
......
......@@ -2072,12 +2072,6 @@ zipfile Read & write PK zipped files.
sha Interface to the SHA message digest algorithm
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)
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