Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

telnetlib in debug mode #35973

Closed
cmoe mannequin opened this issue Jan 24, 2002 · 2 comments
Closed

telnetlib in debug mode #35973

cmoe mannequin opened this issue Jan 24, 2002 · 2 comments
Assignees
Labels
stdlib Python modules in the Lib dir

Comments

@cmoe
Copy link
Mannequin

cmoe mannequin commented Jan 24, 2002

BPO 508100
Nosy @akuchling

Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

Show more details

GitHub fields:

assignee = 'https://github.com/akuchling'
closed_at = <Date 2002-04-29.20:46:01.000>
created_at = <Date 2002-01-24.19:39:55.000>
labels = ['library']
title = 'telnetlib in debug mode'
updated_at = <Date 2002-04-29.20:46:01.000>
user = 'https://bugs.python.org/cmoe'

bugs.python.org fields:

activity = <Date 2002-04-29.20:46:01.000>
actor = 'akuchling'
assignee = 'akuchling'
closed = True
closed_date = None
closer = None
components = ['Library (Lib)']
creation = <Date 2002-01-24.19:39:55.000>
creator = 'c_moe'
dependencies = []
files = []
hgrepos = []
issue_num = 508100
keywords = []
message_count = 2.0
messages = ['8973', '8974']
nosy_count = 2.0
nosy_names = ['akuchling', 'c_moe']
pr_nums = []
priority = 'normal'
resolution = 'fixed'
stage = None
status = 'closed'
superseder = None
type = None
url = 'https://bugs.python.org/issue508100'
versions = []

@cmoe
Copy link
Mannequin Author

cmoe mannequin commented Jan 24, 2002

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))
...

@cmoe cmoe mannequin closed this as completed Jan 24, 2002
@cmoe cmoe mannequin assigned akuchling Jan 24, 2002
@cmoe cmoe mannequin added the stdlib Python modules in the Lib dir label Jan 24, 2002
@cmoe cmoe mannequin closed this as completed Jan 24, 2002
@cmoe cmoe mannequin assigned akuchling Jan 24, 2002
@cmoe cmoe mannequin added the stdlib Python modules in the Lib dir label Jan 24, 2002
@akuchling
Copy link
Member

Logged In: YES
user_id=11375

Fixed by patch bpo-416079.

@ezio-melotti ezio-melotti transferred this issue from another repository Apr 9, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
stdlib Python modules in the Lib dir
Projects
None yet
Development

No branches or pull requests

1 participant