summaryrefslogtreecommitdiffstats
path: root/Demo/threads
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-07-30 19:06:36 (GMT)
committerGuido van Rossum <guido@python.org>1996-07-30 19:06:36 (GMT)
commit3df1d1b89f0d9e7a7992532d75bf01b857c10314 (patch)
tree9e664eec466f2fdc8e9be4ccf759b86f4c346e8a /Demo/threads
parentc163ae5237aa7b00aa9cfdac50d29051d8a5a435 (diff)
downloadcpython-3df1d1b89f0d9e7a7992532d75bf01b857c10314.zip
cpython-3df1d1b89f0d9e7a7992532d75bf01b857c10314.tar.gz
cpython-3df1d1b89f0d9e7a7992532d75bf01b857c10314.tar.bz2
Simplified and rationalized.
Diffstat (limited to 'Demo/threads')
-rw-r--r--Demo/threads/README10
1 files changed, 3 insertions, 7 deletions
diff --git a/Demo/threads/README b/Demo/threads/README
index 81bac93..c6c4a0b 100644
--- a/Demo/threads/README
+++ b/Demo/threads/README
@@ -1,14 +1,10 @@
This directory contains some demonstrations of the thread module.
-This module is only available, optionally, for a few platforms: SGI
-IRIX 4 and IRIX 5, SunOS 4 (not completely functioning), Solaris 2,
-and supposedly any platform that supports Posix Threads (currently
-only tested with KSR's implementation). See ../../Python/thread.c.
These are mostly "proof of concept" type applications:
+Generator.py Generator class implemented with threads.
bug.py Demonstrate a bug with importing modules in threads.
-condition.py Condition variables test by Tim Peters.
find.py Parallelized "find(1)" (looks for directories).
-Generator.py Generator class implemented with threads.
+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 and stdwin.
+wpi.py Version of ../scripts/pi.py using threads (needs stdwin).