blob: a379521e8d94842df055286851aed7f17492ada0 [file] [log] [blame]
Guido van Rossum260cc1a1992-08-10 10:48:14 +00001This directory contains some demonstrations of the thread module.
Guido van Rossum260cc1a1992-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 +00006sync.py Condition variables primitives by Tim Peters.
Guido van Rossum260cc1a1992-08-10 10:48:14 +00007telnet.py Version of ../sockets/telnet.py using threads.
Guido van Rossumf4e13a42000-11-08 15:17:49 +00008
9Coroutine.py Coroutines using threads, by Tim Peters (22 May 94)
10fcmp.py Example of above, by Tim
11squasher.py Another example of above, also by Tim