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 irczan
Recipients irczan, jackdied, ps
Date 2009-07-23.13:52:41
SpamBayes Score 0.0019040311
Marked as misclassified No
Message-id <1248357162.79.0.0366089207231.issue6106@psf.upfronthosting.co.za>
In-reply-to
Content
Hi, 
I head same problem on 3.0 and 3.1 versions
This was because of incompatibility of types in comparison 

My solution is to modify 
Lib/telnetlib.py   
line  462
cmd = self.iacseq[1]
 to 
cmd = self.iacseq[1:2]

Irek
History
Date User Action Args
2009-07-23 13:52:43irczansetrecipients: + irczan, jackdied, ps
2009-07-23 13:52:42irczansetmessageid: <1248357162.79.0.0366089207231.issue6106@psf.upfronthosting.co.za>
2009-07-23 13:52:41irczanlinkissue6106 messages
2009-07-23 13:52:41irczancreate