summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2013-10-07 18:40:59 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2013-10-07 18:40:59 (GMT)
commit1cfa0ba8833c18a330fe9653276de29911198dec (patch)
tree534449bba373b0d1f796be7394da57e7b766f3ee /Misc
parent648f860c227187d01f00934e2e9453b32241bdaf (diff)
parent59c900d3bf85965efe7edc1a3bb7e9b49512f6ab (diff)
downloadcpython-1cfa0ba8833c18a330fe9653276de29911198dec.zip
cpython-1cfa0ba8833c18a330fe9653276de29911198dec.tar.gz
cpython-1cfa0ba8833c18a330fe9653276de29911198dec.tar.bz2
Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least one place so as to avoid regressions.
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 66c3c73..f2d9695 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Projected release date: 2013-10-20
Core and Builtins
-----------------
+- Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at
+ least one place so as to avoid regressions.
+
- Issue #19087: Improve bytearray allocation in order to allow cheap popping
of data at the front (slice deletion).