summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-02-10 01:58:12 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-02-10 01:58:12 (GMT)
commit8ce6806498be8aa8ae4bd3d3d83624766557ffad (patch)
treecaebafee8484d324214281a56fb3c6cbbc469c26 /Misc
parentdee948b359c3a68ab4d6b81319eb2f3548b64c91 (diff)
downloadcpython-8ce6806498be8aa8ae4bd3d3d83624766557ffad.zip
cpython-8ce6806498be8aa8ae4bd3d3d83624766557ffad.tar.gz
cpython-8ce6806498be8aa8ae4bd3d3d83624766557ffad.tar.bz2
add overflow checking (closes #23361)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5e1dbf0..7d1dfb8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,8 @@ Core and Builtins
Library
-------
+- Issue #23361: Fix possible overflow in Windows subprocess creation code.
+
- Issue #23363: Fix possible overflow in itertools.permutations.
- Issue #23364: Fix possible overflow in itertools.product.