cpython/Demo/threads/README

15 lines
739 B
Plaintext
Raw Normal View History

1992-08-10 10:48:14 +00:00
This directory contains some demonstrations of the thread module.
1994-05-16 09:35:01 +00:00
This module is only available, optionally, for a few platforms: SGI
IRIX 4 and IRIX 5, SunOS 4 (not completely functioning), Solaris 2,
and supposedly any platform that supports Posix Threads (currently
only tested with KSR's implementation). See ../../Python/thread.c.
1992-08-10 10:48:14 +00:00
1993-12-17 14:45:06 +00:00
These are mostly "proof of concept" type applications:
1994-05-16 09:35:01 +00:00
bug.py Demonstrate a bug with importing modules in threads.
condition.py Condition variables test by Tim Peters.
find.py Parallelized "find(1)" (looks for directories).
1994-05-03 14:14:49 +00:00
Generator.py Generator class implemented with threads.
1992-08-10 10:48:14 +00:00
telnet.py Version of ../sockets/telnet.py using threads.
wpi.py Version of ../scripts/pi.py using threads and stdwin.