Senthil <[EMAIL PROTECTED]> added the comment: I verified the patch against the trunk. It works fine and solves the issue. But, I have a minor concern over 'ascii' as the default encoding, which you have chosen.
For e.g, when I ran python3.0 nntplib.py (It would run tests, as the module does not have an explicit test), I got the following error due to encoding. (tests read comp.lang.python) UnicodeDecodeError: 'ascii' codec can't decode byte 0x93 in position 29: ordinal not in range(128) Setting the encoding to 'latin1', it passed. Would 'latin1' be a better default encoding? Or should we leave it as 'ascii'. ---------- nosy: +orsenthil _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3714> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com