On 10/7/07, Guido van Rossum <[EMAIL PROTECTED]> wrote: [SNIP] > PS. Is there anyone who understands test_urllib2net and can fix it? > It's been failing for weeks (maybe months) now.
I don't understand it but I fixed it in r58378. =) When ftplib.FTP was converted over to Py3K it was given a default encoding of ASCII on all read data, but that doesn't work as the stuff on the other end could be latin1 (and it was). So I just changed the default encoding. -Brett _______________________________________________ Python-3000 mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000 Unsubscribe: http://mail.python.org/mailman/options/python-3000/archive%40mail-archive.com
