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.

Author dugan
Recipients dugan
Date 2009-02-08.22:16:09
SpamBayes Score 1.9819514e-05
Marked as misclassified No
Message-id <1234131372.15.0.372715702734.issue5188@psf.upfronthosting.co.za>
In-reply-to
Content
in telnetlib's process_rawq, rawq_getchar() returns a bytes object of
length 1.

However, that buffer is then compared directly against the variable IAC,
which is the integer 255.  This is always false, as bytes([255]) != 255.

Checked svn and looks like this issue still exists as of 2/8/2009.
History
Date User Action Args
2009-02-08 22:16:13dugansetrecipients: + dugan
2009-02-08 22:16:12dugansetmessageid: <1234131372.15.0.372715702734.issue5188@psf.upfronthosting.co.za>
2009-02-08 22:16:10duganlinkissue5188 messages
2009-02-08 22:16:09dugancreate