diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-11-20 01:38:49 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-11-20 01:38:49 (GMT) |
commit | 5b066817e2e777c8eff7776335482b9d6efd115b (patch) | |
tree | 4dc23dae3fd2708e743d7fcae0f210fed39887d0 /Misc | |
parent | c8c60c22845177f419e4de7305102310e336b1f0 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |