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 serhiy.storchaka
Recipients ncoghlan, serhiy.storchaka, vstinner
Date 2013-08-23.08:04:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1377245074.68.0.117070566636.issue18818@psf.upfronthosting.co.za>
In-reply-to
Content
Second variant of the patch also supports empty error handler as the default error handler (i.e. strict).

$ PYTHONIOENCODING=ascii: ./python
Python 3.4.0a1+ (default:5b5ef012cd4e+, Aug 23 2013, 10:18:51) 
[GCC 4.6.3] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> print('\xbd')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'ascii' codec can't encode character '\xbd' in position 0: ordinal not in range(128)

Without it different error is raised:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
LookupError: unknown error handler name ''
History
Date User Action Args
2013-08-23 08:04:34serhiy.storchakasetrecipients: + serhiy.storchaka, ncoghlan, vstinner
2013-08-23 08:04:34serhiy.storchakasetmessageid: <1377245074.68.0.117070566636.issue18818@psf.upfronthosting.co.za>
2013-08-23 08:04:34serhiy.storchakalinkissue18818 messages
2013-08-23 08:04:34serhiy.storchakacreate