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 bbrox
Recipients
Date 2001-04-13.21:09:27
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
In file telnetlib.py, there is the following line :

  opt = self.rawq_getchar()
  self.msg('IAC %s %d', c == DO and 'DO' or 'DONT', ord(c))

The problem is that it prints 'c' twice (once as DO or
DONT, the other as its numerical value).

For debugging, it's 'opt' that is needed to be printed
(it's the option that corresponds to DO or DONT).

History
Date User Action Args
2007-08-23 15:04:45adminlinkissue416023 messages
2007-08-23 15:04:45admincreate