diff options
author | Guido van Rossum <guido@python.org> | 1994-05-16 09:35:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1994-05-16 09:35:01 (GMT) |
commit | 9f2a5b0f665530bc37c5c94e6ae5bc860f527635 (patch) | |
tree | d43bd6495bbcbbc89c4e39eaf8e887a513771609 /Demo/threads | |
parent | 655f600b5876a4f1bd19b2adbb489524e11296b3 (diff) | |
download | cpython-9f2a5b0f665530bc37c5c94e6ae5bc860f527635.zip cpython-9f2a5b0f665530bc37c5c94e6ae5bc860f527635.tar.gz cpython-9f2a5b0f665530bc37c5c94e6ae5bc860f527635.tar.bz2 |
Added bug.py and condition.py
Diffstat (limited to 'Demo/threads')
-rw-r--r-- | Demo/threads/README | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Demo/threads/README b/Demo/threads/README index 47660a0..81bac93 100644 --- a/Demo/threads/README +++ b/Demo/threads/README @@ -1,9 +1,14 @@ This directory contains some demonstrations of the thread module. -This module is only (optionally) available for the SGI, for now. +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. These are mostly "proof of concept" type applications: -find.py Parallelized "find(1)". +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). Generator.py Generator class implemented with threads. telnet.py Version of ../sockets/telnet.py using threads. wpi.py Version of ../scripts/pi.py using threads and stdwin. |