Message195951
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 '' |
|
Date |
User |
Action |
Args |
2013-08-23 08:04:34 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, ncoghlan, vstinner |
2013-08-23 08:04:34 | serhiy.storchaka | set | messageid: <1377245074.68.0.117070566636.issue18818@psf.upfronthosting.co.za> |
2013-08-23 08:04:34 | serhiy.storchaka | link | issue18818 messages |
2013-08-23 08:04:34 | serhiy.storchaka | create | |
|