summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-06-16 23:48:49 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-06-16 23:48:49 (GMT)
commit2bdab2406332e8f9094bac22cc796f2385bcd116 (patch)
treeac492ccf9bf799e74000762e15e7c15053a2445a /Misc
parent554f3f0081fc8f3561b031d957ffbab1034d8b83 (diff)
downloadcpython-2bdab2406332e8f9094bac22cc796f2385bcd116.zip
cpython-2bdab2406332e8f9094bac22cc796f2385bcd116.tar.gz
cpython-2bdab2406332e8f9094bac22cc796f2385bcd116.tar.bz2
Issue #850997: Oops, I forgot the author of the patch: Mark Hammond
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 1 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index e56711c..7f8ccef 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,7 +15,7 @@ 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.
+ handlers. Patch written by Mark Hammond.
- 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