summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>2011-11-22 20:51:55 (GMT)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>2011-11-22 20:51:55 (GMT)
commit58e8761da6d11653288b76d2dec6417000a20e74 (patch)
tree6b4ef5c1a8ca1329724cffe07ff34fb5282ba845 /Misc
parent3b1acf11e98bceec44c28d9e6d665e68227d8bf2 (diff)
downloadcpython-58e8761da6d11653288b76d2dec6417000a20e74.zip
cpython-58e8761da6d11653288b76d2dec6417000a20e74.tar.gz
cpython-58e8761da6d11653288b76d2dec6417000a20e74.tar.bz2
Issue #13436: Fix a bogus error message when an AST object was passed
an invalid integer value.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4e43b45..0b228ef 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
+- Issue #13436: Fix a bogus error message when an AST object was passed
+ an invalid integer value.
+
- Issue #13338: Handle all enumerations in _Py_ANNOTATE_MEMORY_ORDER
to allow compiling extension modules with -Wswitch-enum on gcc.
Initial patch by Floris Bruynooghe.