summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-11-20 01:38:49 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-11-20 01:38:49 (GMT)
commit5b066817e2e777c8eff7776335482b9d6efd115b (patch)
tree4dc23dae3fd2708e743d7fcae0f210fed39887d0 /Misc
parentc8c60c22845177f419e4de7305102310e336b1f0 (diff)
downloadcpython-5b066817e2e777c8eff7776335482b9d6efd115b.zip
cpython-5b066817e2e777c8eff7776335482b9d6efd115b.tar.gz
cpython-5b066817e2e777c8eff7776335482b9d6efd115b.tar.bz2
use %R format code; fixes invalid dereferencing #10391
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 8ab404d..138f0f5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2 Beta 1?
Core and Builtins
-----------------
+- Issue #10391: Don't dereference invalid memory in error messages in the ast
+ module.
+
- Issue #9518: Extend the PyModuleDef_HEAD_INIT macro to explicitly
zero-initialize all fields, fixing compiler warnings seen when building
extension modules with gcc with "-Wmissing-field-initializers" (implied