diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-25 19:09:01 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-11-25 19:09:01 (GMT) |
commit | 6345be9a141642c2e95eec417844f8702775b700 (patch) | |
tree | 5cfa88e01498c964c857ca184f7010924e69de25 /Misc | |
parent | e7ede067576e9beaf0787e1fb3104cf6202d8aa0 (diff) | |
download | cpython-6345be9a141642c2e95eec417844f8702775b700.zip cpython-6345be9a141642c2e95eec417844f8702775b700.tar.gz cpython-6345be9a141642c2e95eec417844f8702775b700.tar.bz2 |
Close #13093: PyUnicode_EncodeDecimal() doesn't support error handlers
different than "strict" anymore. The caller was unable to compute the
size of the output buffer: it depends on the error handler.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ What's New in Python 3.3 Alpha 1? Core and Builtins ----------------- +- Issue #13093: PyUnicode_EncodeDecimal() doesn't support error handlers + different than "strict" anymore. The caller was unable to compute the + size of the output buffer: it depends on the error handler. + - PEP 3155 / issue #13448: Qualified name for classes and functions. - Issue #13436: Fix a bogus error message when an AST object was passed |