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 jhylton
Recipients jhylton
Date 2009-03-31.17:08:43
SpamBayes Score 0.09968847
Marked as misclassified No
Message-id <1238519324.96.0.24578067817.issue5628@psf.upfronthosting.co.za>
In-reply-to
Content
import io
import urllib.request

f_bytes = urllib.request.urlopen("http://www.python.org/")
f_string = io.TextIOWrapper(f_bytes, "iso-8859-1")
print(f_string.read())
History
Date User Action Args
2009-03-31 17:08:45jhyltonsetrecipients: + jhylton
2009-03-31 17:08:44jhyltonsetmessageid: <1238519324.96.0.24578067817.issue5628@psf.upfronthosting.co.za>
2009-03-31 17:08:43jhyltonlinkissue5628 messages
2009-03-31 17:08:43jhyltoncreate