summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-06-16 23:33:54 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-06-16 23:33:54 (GMT)
commit554f3f0081fc8f3561b031d957ffbab1034d8b83 (patch)
treef329005e253141249813de35f3f89ea2c979809f /Misc/NEWS
parent79ee19f3db964733d4fe94184dbb65bc819c65ce (diff)
downloadcpython-554f3f0081fc8f3561b031d957ffbab1034d8b83.zip
cpython-554f3f0081fc8f3561b031d957ffbab1034d8b83.tar.gz
cpython-554f3f0081fc8f3561b031d957ffbab1034d8b83.tar.bz2
Issue #850997: mbcs encoding (Windows only) handles errors argument: strict
mode raises unicode errors. The encoder only supports "strict" and "replace" error handlers, the decoder only supports "strict" and "ignore" error handlers.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 7817276..e56711c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,11 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #850997: mbcs encoding (Windows only) handles errors argument: strict
+ mode raises unicode errors. The encoder only supports "strict" and "replace"
+ error handlers, the decoder only supports "strict" and "ignore" error
+ handlers.
+
- Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z"
formats if the string contains a null byte/character. Write unit tests for
string formats.