Home | History | Annotate | only in /external/python/cpython2/Demo/threads
Up to higher level directory
NameDateSize
Coroutine.py21-Aug-20185.4K
fcmp.py21-Aug-20181.7K
find.py21-Aug-20184.1K
Generator.py21-Aug-20182.5K
README21-Aug-2018440
squasher.py21-Aug-20183K
sync.py21-Aug-201821.1K
telnet.py21-Aug-20183K

README

      1 This directory contains some demonstrations of the thread module.
      2 
      3 These are mostly "proof of concept" type applications:
      4 
      5 Generator.py	Generator class implemented with threads.
      6 sync.py		Condition variables primitives by Tim Peters.
      7 telnet.py	Version of ../sockets/telnet.py using threads.
      8 
      9 Coroutine.py	Coroutines using threads, by Tim Peters (22 May 94)
     10 fcmp.py		Example of above, by Tim
     11 squasher.py	Another example of above, also by Tim
     12