This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: telnetlib in debug mode
Type: Stage:
Components: Library (Lib) Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, c_moe
Priority: normal Keywords:

Created on 2002-01-24 19:39 by c_moe, last changed 2022-04-10 16:04 by admin. This issue is now closed.

Messages (2)
msg8973 - (view) Author: Cedric Moreau (c_moe) Date: 2002-01-24 19:39
In telnetlib.py, in function process_rawq() the display
of IAC mode options in debug mode isn't right:
Actually:
...
self.msg('IAC %s %d', c == DO and 'DO' or 'DONT', ord(c))
...
self.msg('IAC %s %d', c == WILL and 'WILL' or 'WONT',
ord(c))

Should be:
...
self.msg('IAC %s %d', c == DO and 'DO' or 'DONT', ord(opt))
...
self.msg('IAC %s %d', c == WILL and 'WILL' or 'WONT',
ord(opt))
...
msg8974 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2002-04-29 20:46
Logged In: YES 
user_id=11375

Fixed by patch #416079.
History
Date User Action Args
2022-04-10 16:04:55adminsetgithub: 35973
2002-01-24 19:39:55c_moecreate