summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-11-19 20:03:10 (GMT)
committerPetri Lehtinen <petri@digip.org>2011-11-19 20:03:10 (GMT)
commit8d40f16a6021dc7fbba1bdc1bbda27ea1e955777 (patch)
tree6d65e13091565475b90799bf16304317427e7781 /Misc
parentb1e58fe43f14ccf0a67589142ea643493b348c2b (diff)
downloadcpython-8d40f16a6021dc7fbba1bdc1bbda27ea1e955777.zip
cpython-8d40f16a6021dc7fbba1bdc1bbda27ea1e955777.tar.gz
cpython-8d40f16a6021dc7fbba1bdc1bbda27ea1e955777.tar.bz2
Issue #13338: Handle all enumerations in _Py_ANNOTATE_MEMORY_ORDER
This allows compiling extension modules with -Wswitch-enum on gcc. Initial patch by Floris Bruynooghe.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS4
2 files changed, 5 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index a82e0c9..c66edb7 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -124,6 +124,7 @@ Gary S. Brown
Oleg Broytmann
Dave Brueck
Francisco Martín Brugué
+Floris Bruynooghe
Stan Bubrouski
Erik de Bueger
Dick Bulterman
diff --git a/Misc/NEWS b/Misc/NEWS
index 513984d..c3765dd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ What's New in Python 3.2.3?
Core and Builtins
-----------------
+- 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.
+
- Issue #13333: The UTF-7 decoder now accepts lone surrogates (the encoder
already accepts them).