[issue6106] read_until
Irek Wlizlo added the comment: Hi, I updated my profile with name - Irek Wlizlo -- ___ Python tracker <http://bugs.python.org/issue6106> ___ ___ Python-bug
[issue6106] read_until
irek added the comment: 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 -- nosy: +irczan versions: +Python 3.1