summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2013-04-13 18:15:47 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2013-04-13 18:15:47 (GMT)
commit4bb17348f5507f42f62d15b16ca0672e802f619c (patch)
tree5316a0216b116ee0c90c413b65bdc62f02882161 /Misc
parentf756f947f95b4b094d75f98d74b96ab3061133a3 (diff)
downloadcpython-4bb17348f5507f42f62d15b16ca0672e802f619c.zip
cpython-4bb17348f5507f42f62d15b16ca0672e802f619c.tar.gz
cpython-4bb17348f5507f42f62d15b16ca0672e802f619c.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 7382dec..12c2172 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1344,6 +1344,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 4fd149a..7218747 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,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.