summaryrefslogtreecommitdiffstats
path: root/Demo/threads
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-05-13 20:54:19 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2007-05-13 20:54:19 (GMT)
commit25e4461666181222c48132ef32e35fc6ab1231ea (patch)
tree57d70a2900d9d6203800ca2b7806ecf5fa84f096 /Demo/threads
parent7072559db9cfa6f841a66950a483f8b157555e90 (diff)
downloadcpython-25e4461666181222c48132ef32e35fc6ab1231ea.zip
cpython-25e4461666181222c48132ef32e35fc6ab1231ea.tar.gz
cpython-25e4461666181222c48132ef32e35fc6ab1231ea.tar.bz2
Remove references to stdwin which was removed long ago.
Diffstat (limited to 'Demo/threads')
-rw-r--r--Demo/threads/README2
1 files changed, 0 insertions, 2 deletions
diff --git a/Demo/threads/README b/Demo/threads/README
index fee6aad..a379521 100644
--- a/Demo/threads/README
+++ b/Demo/threads/README
@@ -3,10 +3,8 @@ This directory contains some demonstrations of the thread module.
These are mostly "proof of concept" type applications:
Generator.py Generator class implemented with threads.
-find.py Parallelized "find(1)" (looks for directories).
sync.py Condition variables primitives by Tim Peters.
telnet.py Version of ../sockets/telnet.py using threads.
-wpi.py Version of ../scripts/pi.py using threads (needs stdwin).
Coroutine.py Coroutines using threads, by Tim Peters (22 May 94)
fcmp.py Example of above, by Tim