Commit dc27ff2a authored by Guido van Rossum's avatar Guido van Rossum

*** empty log message ***

parent 6ad9da50
This directory contains some demonstrations of the thread module. This directory contains some demonstrations of the thread module.
They are mostly "proof of concept" type applications: This module is only (optionally) available for the SGI, for now.
These are mostly "proof of concept" type applications:
find.py Parallelized "find(1)".
telnet.py Version of ../sockets/telnet.py using threads. telnet.py Version of ../sockets/telnet.py using threads.
wpi.py Version of ../scripts/pi.py using threads and stdwin. wpi.py Version of ../scripts/pi.py using threads and stdwin.
...@@ -28,6 +28,9 @@ WONT = chr(252) ...@@ -28,6 +28,9 @@ WONT = chr(252)
WILL = chr(251) WILL = chr(251)
def main(): def main():
if len(sys.argv) != 2:
sys.stderr.write('usage: telnet hostname\n')
sys.exit(2)
host = sys.argv[1] host = sys.argv[1]
try: try:
hostaddr = gethostbyname(host) hostaddr = gethostbyname(host)
...@@ -74,7 +77,7 @@ def parent(s): ...@@ -74,7 +77,7 @@ def parent(s):
for c in data: for c in data:
if opt: if opt:
print ord(c) print ord(c)
print '(replying: ' + `opt+c` + ')' ## print '(replying: ' + `opt+c` + ')'
s.send(opt + c) s.send(opt + c)
opt = '' opt = ''
elif iac: elif iac:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment