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 dato
Recipients dato
Date 2008-12-11.11:23:00
SpamBayes Score 0.062285576
Marked as misclassified No
Message-id <1228994582.88.0.234313374656.issue4631@psf.upfronthosting.co.za>
In-reply-to
Content
This is very odd, but it was reproduced by people in #python as well. 
Compare, in python 2.5:

>>> 
urllib.urlopen('http://bugs.debian.org/cgi-bin/bugreport.cgi?mbox=yes;bug=123456').readline()
'From mechanix@lucretia.debian.net Tue Dec 11 11:32:47 2001\n'

To the equivalent in python 3.0:

>>> 
urllib.request.urlopen('http://bugs.debian.org/cgi-bin/bugreport.cgi?mbox=yes;bug=123456').readline()
b'f65\r\n'
History
Date User Action Args
2008-12-11 11:23:02datosetrecipients: + dato
2008-12-11 11:23:02datosetmessageid: <1228994582.88.0.234313374656.issue4631@psf.upfronthosting.co.za>
2008-12-11 11:23:01datolinkissue4631 messages
2008-12-11 11:23:00datocreate