Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
Coroutine.py | D | 03-May-2024 | 5.4 KiB | 160 | 73 | |
Generator.py | D | 03-May-2024 | 2.5 KiB | 93 | 72 | |
README | D | 03-May-2024 | 440 | 12 | 8 | |
fcmp.py | D | 03-May-2024 | 1.7 KiB | 65 | 52 | |
find.py | D | 03-May-2024 | 4.1 KiB | 156 | 94 | |
squasher.py | D | 03-May-2024 | 3 KiB | 106 | 62 | |
sync.py | D | 03-May-2024 | 21.1 KiB | 604 | 269 | |
telnet.py | D | 03-May-2024 | 3 KiB | 115 | 80 |
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