summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
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/NEWS
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/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
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.