summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-04-13 18:16:40 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-04-13 18:16:40 (GMT)
commit6d80046628759bc721640f7f888aa386529d0239 (patch)
treebb66c27cb4821557b2caba2cfa79372c38a127a6 /Misc
parentd24abee4632a233d17eaad0ab962c97545e387b3 (diff)
parent4bb17348f5507f42f62d15b16ca0672e802f619c (diff)
downloadcpython-6d80046628759bc721640f7f888aa386529d0239.zip
cpython-6d80046628759bc721640f7f888aa386529d0239.tar.gz
cpython-6d80046628759bc721640f7f888aa386529d0239.tar.bz2
Issue #17016: Get rid of possible pointer wraparounds and integer overflows
in the re module. Patch by Nickolai Zeldovich.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index a6b42e2..da250f4 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1371,6 +1371,7 @@ Milan Zamazal
Artur Zaprzala
Mike Zarnstorff
Siebren van der Zee
+Nickolai Zeldovich
Yuxiao Zeng
Uwe Zessin
Cheng Zhang
diff --git a/Misc/NEWS b/Misc/NEWS
index 24691d5..c163493 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -42,6 +42,9 @@ Core and Builtins
Library
-------
+- Issue #17016: Get rid of possible pointer wraparounds and integer overflows
+ in the re module. Patch by Nickolai Zeldovich.
+
- Issue #16658: add missing return to HTTPConnection.send()
Patch by Jeff Knupp.