diff options
author | Petri Lehtinen <petri@digip.org> | 2011-11-19 20:03:10 (GMT) |
---|---|---|
committer | Petri Lehtinen <petri@digip.org> | 2011-11-19 20:03:10 (GMT) |
commit | 8d40f16a6021dc7fbba1bdc1bbda27ea1e955777 (patch) | |
tree | 6d65e13091565475b90799bf16304317427e7781 /Misc | |
parent | b1e58fe43f14ccf0a67589142ea643493b348c2b (diff) | |
download | cpython-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/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -124,6 +124,7 @@ Gary S. Brown Oleg Broytmann Dave Brueck Francisco Martín Brugué +Floris Bruynooghe Stan Bubrouski Erik de Bueger Dick Bulterman @@ -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). |