• Home
  • History
  • Annotate
  • only in /external/python/cpython2/Demo/threads/
NameDateSize

..10-Aug-20184 KiB

Coroutine.py10-Aug-20185.4 KiB

fcmp.py10-Aug-20181.7 KiB

find.py10-Aug-20184.1 KiB

Generator.py10-Aug-20182.5 KiB

README10-Aug-2018440

squasher.py10-Aug-20183 KiB

sync.py10-Aug-201821.1 KiB

telnet.py10-Aug-20183 KiB

README

1This directory contains some demonstrations of the thread module.
2
3These are mostly "proof of concept" type applications:
4
5Generator.py	Generator class implemented with threads.
6sync.py		Condition variables primitives by Tim Peters.
7telnet.py	Version of ../sockets/telnet.py using threads.
8
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
12