cpython/Demo/threads
Guido van Rossum b940e113bf SF patch 1631942 by Collin Winter:
(a) "except E, V" -> "except E as V"
(b) V is now limited to a simple name (local variable)
(c) V is now deleted at the end of the except block
2007-01-10 16:19:56 +00:00
..
Coroutine.py Remove apply() 2006-03-17 08:00:19 +00:00
Generator.py Remove apply() 2006-03-17 08:00:19 +00:00
README Remove bug.py. This is something I sent to Guido via email in or before 2002-03-25 06:55:57 +00:00
fcmp.py Merge the rest of the trunk. 2006-06-08 15:35:45 +00:00
find.py SF patch 1631942 by Collin Winter: 2007-01-10 16:19:56 +00:00
squasher.py Add more complete reference. Change a co.back() call to co.tran() -- 2001-03-22 13:36:11 +00:00
sync.py fix error message; closes SF patch #932796 2004-05-12 03:15:07 +00:00
telnet.py SF patch 1631942 by Collin Winter: 2007-01-10 16:19:56 +00:00

README

This directory contains some demonstrations of the thread module.

These are mostly "proof of concept" type applications:

Generator.py	Generator class implemented with threads.
find.py		Parallelized "find(1)" (looks for directories).
sync.py		Condition variables primitives by Tim Peters.
telnet.py	Version of ../sockets/telnet.py using threads.
wpi.py		Version of ../scripts/pi.py using threads (needs stdwin).

Coroutine.py	Coroutines using threads, by Tim Peters (22 May 94)
fcmp.py		Example of above, by Tim
squasher.py	Another example of above, also by Tim