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 orsenthil
Recipients amaury.forgeotdarc, hdima, orsenthil
Date 2008-09-08.12:57:36
SpamBayes Score 2.7256894e-05
Marked as misclassified No
Message-id <20080908125725.GC12999@gmail.com>
In-reply-to <1219934469.45.0.0810562153441.issue3714@psf.upfronthosting.co.za>
Content
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'.
History
Date User Action Args
2008-09-08 12:58:00orsenthilsetrecipients: + orsenthil, hdima, amaury.forgeotdarc
2008-09-08 12:57:37orsenthillinkissue3714 messages
2008-09-08 12:57:36orsenthilcreate