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