blob: fee6aad326d08c48ab076837250b9f6563adb6af [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 +00006find.py Parallelized "find(1)" (looks for directories).
7sync.py Condition variables primitives by Tim Peters.
Guido van Rossum260cc1a81992-08-10 10:48:14 +00008telnet.py Version of ../sockets/telnet.py using threads.
Guido van Rossum3df1d1b1996-07-30 19:06:36 +00009wpi.py Version of ../scripts/pi.py using threads (needs stdwin).
Guido van Rossumf4e13a42000-11-08 15:17:49 +000010
11Coroutine.py Coroutines using threads, by Tim Peters (22 May 94)
12fcmp.py Example of above, by Tim
13squasher.py Another example of above, also by Tim