Message1722

Author cgroves
Recipients
Date 2007-07-21.05:46:39
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Committed a version of telnetlib that uses cpython_compatible_select in r3334.  I don't have a telnet server running locally(actually, I'd never used telnet before tonight), so I used the following code to test:

import telnetlib

tn = telnetlib.Telnet("scn.org")
print tn.read_until('login:')
tn.write("visitor\r\n")
print tn.read_until('Press RETURN to Continue')

It definitely broke without the modifications to telnetlib, but you might want to your own test to make sure I didn't miss anything.
History
Date User Action Args
2008-02-20 17:17:53adminlinkissue1755096 messages
2008-02-20 17:17:53admincreate