summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorDavid Malcolm <dmalcolm@redhat.com>2010-11-17 21:20:18 (GMT)
committerDavid Malcolm <dmalcolm@redhat.com>2010-11-17 21:20:18 (GMT)
commit82e73cb951b72d91b924452ee44eefb6f135640f (patch)
treef62b9865bafad360715fac61e63ec710a8f6755f /Misc
parent664c2d1fc072d0cbd9b92a1cd5c9ac9ad7db326e (diff)
downloadcpython-82e73cb951b72d91b924452ee44eefb6f135640f.zip
cpython-82e73cb951b72d91b924452ee44eefb6f135640f.tar.gz
cpython-82e73cb951b72d91b924452ee44eefb6f135640f.tar.bz2
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 by "-W")
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4312186..9f47ca3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,11 @@ What's New in Python 3.2 Beta 1?
Core and Builtins
-----------------
+- 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
+ by "-W")
+
Library
-------