Staging
v0.5.1
https://github.com/python/cpython
Revision 351ffb80c3fffc2996cc320fd9e0eaf3778eba25 authored by Amaury Forgeot d'Arc on 18 August 2008, 19:23:47 UTC, committed by Amaury Forgeot d'Arc on 18 August 2008, 19:23:47 UTC
Be less strict when parsing these version numbers,
they don't necessarily follow the python numbering scheme.
1 parent 26f5216
Raw File
Tip revision: 351ffb80c3fffc2996cc320fd9e0eaf3778eba25 authored by Amaury Forgeot d'Arc on 18 August 2008, 19:23:47 UTC
#2234 distutils failed with mingw binutils 2.18.50.20080109.
Tip revision: 351ffb8
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.
sync.py		Condition variables primitives by Tim Peters.
telnet.py	Version of ../sockets/telnet.py using threads.

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
back to top