diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-24 22:08:25 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2010-06-24 22:08:25 (GMT) |
commit | 4aae1ebab2cab2a4df1ed89b9454f3c88642530e (patch) | |
tree | 329078b4b66ab0accb1a7fef7e0ca1ac586989e8 /Misc/NEWS | |
parent | 2f7105dde7a01b85640aefb92e8131c02c82e954 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |