blob: fe27818cc5884f197e56ba7ee19b8b14a5b7db80 [file] [log] [blame]
Guido van Rossum260cc1a81992-08-10 10:48:14 +00001This directory contains some demonstrations of the thread module.
Guido van Rossum260cc1a81992-08-10 10:48:14 +00002
Guido van Rossumf82fef01993-12-17 14:45:06 +00003These are mostly "proof of concept" type applications:
4
Guido van Rossumd15a1551994-05-03 14:14:49 +00005Generator.py Generator class implemented with threads.
Guido van Rossum3df1d1b1996-07-30 19:06:36 +00006bug.py Demonstrate a bug with importing modules in threads.
7find.py Parallelized "find(1)" (looks for directories).
8sync.py Condition variables primitives by Tim Peters.
Guido van Rossum260cc1a81992-08-10 10:48:14 +00009telnet.py Version of ../sockets/telnet.py using threads.
Guido van Rossum3df1d1b1996-07-30 19:06:36 +000010wpi.py Version of ../scripts/pi.py using threads (needs stdwin).
Guido van Rossumf4e13a42000-11-08 15:17:49 +000011
12Coroutine.py Coroutines using threads, by Tim Peters (22 May 94)
13fcmp.py Example of above, by Tim
14squasher.py Another example of above, also by Tim