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 LazyLogik
Recipients LazyLogik, dugan, jackdied
Date 2009-07-20.08:07:53
SpamBayes Score 0.0003049483
Marked as misclassified No
Message-id <1248077275.4.0.970099963404.issue5188@psf.upfronthosting.co.za>
In-reply-to
Content
Hello,

I am also facing problems in using telnetlib. 

I think following changes are also required. e.g. on line 442 (if c!= 
IAC) should be replaced with (if c!= IAC[0]). Similarly line 465 (if cmd 
in (DO, DONT)) should be replaced with (if cmd in (DO[0], DONT[0]). 

I also get some errors while printing debug messages also if debug level 
is not zero. e.g. Line 466


Regards,
Naimesh
History
Date User Action Args
2009-07-20 08:07:55LazyLogiksetrecipients: + LazyLogik, jackdied, dugan
2009-07-20 08:07:55LazyLogiksetmessageid: <1248077275.4.0.970099963404.issue5188@psf.upfronthosting.co.za>
2009-07-20 08:07:54LazyLogiklinkissue5188 messages
2009-07-20 08:07:53LazyLogikcreate