blob: c6c4a0ba59210d9d12504b0376416e520059083f [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).