summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-01-14 17:25:24 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-01-14 17:25:24 (GMT)
commitefdddd3370fc646836b6113247159846734fc129 (patch)
treee6756e2bf9607e658ba334ab90ff0e6771500986 /Misc
parentfd3a60d5efb7ad1e2127d66d151c2cc4280b112b (diff)
downloadcpython-efdddd3370fc646836b6113247159846734fc129.zip
cpython-efdddd3370fc646836b6113247159846734fc129.tar.gz
cpython-efdddd3370fc646836b6113247159846734fc129.tar.bz2
Issue #3299: Fix possible crash in the _sre module when given bad
argument values in debug mode. Patch by Victor Stinner.
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 665c924..2f90b5e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@ Core and Builtins
Library
-------
+- Issue #3299: Fix possible crash in the _sre module when given bad
+ argument values in debug mode. Patch by Victor Stinner.
+
- Issue #7703: Add support for the new buffer API to functions of the
binascii module. Backported from py3k by Florent Xicluna, with some
additional tests.