]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added bug.py and condition.py
authorGuido van Rossum <guido@python.org>
Mon, 16 May 1994 09:35:01 +0000 (09:35 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 16 May 1994 09:35:01 +0000 (09:35 +0000)
Demo/threads/README

index 47660a051c6a6c6c6c30e966fe7c70d04ee25954..81bac931a314d46285293b3e0971289b104293fa 100644 (file)
@@ -1,9 +1,14 @@
 This directory contains some demonstrations of the thread module.
-This module is only (optionally) available for the SGI, for now.
+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:
 
-find.py                Parallelized "find(1)".
+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.
 telnet.py      Version of ../sockets/telnet.py using threads.
 wpi.py         Version of ../scripts/pi.py using threads and stdwin.