diff options
Diffstat (limited to 'Demo/threads/telnet.py')
-rw-r--r-- | Demo/threads/telnet.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Demo/threads/telnet.py b/Demo/threads/telnet.py index 09f3bd9b18..7366341232 100644 --- a/Demo/threads/telnet.py +++ b/Demo/threads/telnet.py @@ -76,7 +76,7 @@ def parent(s): cleandata = '' for c in data: if opt: - print ord(c) + print(ord(c)) ## print '(replying: %r)' % (opt+c,) s.send(opt + c) opt = '' @@ -85,18 +85,18 @@ def parent(s): if c == IAC: cleandata = cleandata + c elif c in (DO, DONT): - if c == DO: print '(DO)', - else: print '(DONT)', + if c == DO: print('(DO)', end=' ') + else: print('(DONT)', end=' ') opt = IAC + WONT elif c in (WILL, WONT): - if c == WILL: print '(WILL)', - else: print '(WONT)', + if c == WILL: print('(WILL)', end=' ') + else: print('(WONT)', end=' ') opt = IAC + DONT else: - print '(command)', ord(c) + print('(command)', ord(c)) elif c == IAC: iac = 1 - print '(IAC)', + print('(IAC)', end=' ') else: cleandata = cleandata + c sys.stdout.write(cleandata) |