Re: [Python-Dev] Eric Raymond account on bug tracker locked
He's probably still [EMAIL PROTECTED] But he has long stopped being an active developer so I doubt that informing him matters much. On 9/15/07, Paul Dubois <[EMAIL PROTECTED]> wrote: > Eric Raymond (esr)'s account on bugs.python.org has been misused. Since this > may mean that his password on sf.net is also compromised, I cannot trust > that address to notify him. I have changed the password to prevent further > mischief. If someone knows a bona-fide way to contact him let me know it and > I'll inform him, if he doesn't see this himself. -- --Guido van Rossum (home page: http://www.python.org/~guido/) ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
[Python-Dev] 'text' mode rears its ugly head again
I've checked in the asyncore SSL patch, and the Windows buildbots are failing on the HTTPS test. I believe it's due to this insane differentiation between between text files and binary files, a bad idea introduced by Windows and perpetuated (apparently) by Python. I can't believe this wasn't eliminated in py3k! Anyway, I think what's going on is that the two data blobs the test compares, one read from a file opened with "open(filename, 'r')", and the other a data stream read from an HTTP response "file" returned from urllib.urlopen(), have different line-endings. Of course, this only matters on Windows; on UNIX, the faux differentiation doesn't exist. Bill ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] 'text' mode rears its ugly head again
> I've checked in the asyncore SSL patch, and the Windows buildbots are > failing on the HTTPS test. Fixed. Bill ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
