[issue1772794] Telnetlib dosn't accept u'only ascii'

2009-07-26 Thread Jack Diederich
Jack Diederich added the comment: Marking closed/won't fix. ASCII strings are the byte-ish type in 2.x so we should expect the caller to convert down from unicode when sending bytes over the wire. -- resolution: -> wont fix status: open -> closed _

[issue1772794] Telnetlib dosn't accept u'only ascii'

2009-07-12 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.

[issue1772794] Telnetlib dosn't accept u'only ascii'

2009-04-01 Thread Jack Diederich
Jack Diederich added the comment: assigning all open telnetlib items to myself -- assignee: -> jackdied nosy: +jackdied ___ Python tracker ___ ___

[issue1772794] Telnetlib dosn't accept u'only ascii'

2008-11-26 Thread sebek
sebek <[EMAIL PROTECTED]> added the comment: I wonder if it is the same problem as bug #3725. In this case it has been fixed in r66904 where telnetlib knows only understand bytes instead of characters. see http://bugs.python.org/issue3725 -- nosy: +sebek ___

[issue1772794] Telnetlib dosn't accept u'only ascii'

2008-01-06 Thread Christian Heimes
Christian Heimes added the comment: The code should raise a proper unicode error. In general network code accepts only bytes, not unicode. -- components: +Library (Lib) -None nosy: +tiran priority: normal -> low type: -> rfe versions: +Python 2.6 _ T