summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2010-06-24 22:08:25 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2010-06-24 22:08:25 (GMT)
commit4aae1ebab2cab2a4df1ed89b9454f3c88642530e (patch)
tree329078b4b66ab0accb1a7fef7e0ca1ac586989e8 /Misc/NEWS
parent2f7105dde7a01b85640aefb92e8131c02c82e954 (diff)
downloadcpython-4aae1ebab2cab2a4df1ed89b9454f3c88642530e.zip
cpython-4aae1ebab2cab2a4df1ed89b9454f3c88642530e.tar.gz
cpython-4aae1ebab2cab2a4df1ed89b9454f3c88642530e.tar.bz2
Issue #8949: "z" format of PyArg_Parse*() functions doesn't accept bytes
objects, as described in the documentation.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2c6083d..46583e9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.2 Alpha 1?
Core and Builtins
-----------------
+- Issue #8949: "z" format of PyArg_Parse*() functions doesn't accept bytes
+ objects, as described in the documentation.
+
- Issue #6543: Write the traceback in the terminal encoding instead of utf-8.
Fix the encoding of the modules filename. Patch written by Amaury Forgeot
d'Arc.