summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-08-14 01:15:28 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-08-14 01:15:28 (GMT)
commit40a77c33819606b40ca04f680a06fcf31e2151a6 (patch)
treeb8cb6de1e26e2a02bfdb60a79622e548384a4591 /Misc
parent59b6abd38c04472a256b1b04e8709defb29e44ef (diff)
downloadcpython-40a77c33819606b40ca04f680a06fcf31e2151a6.zip
cpython-40a77c33819606b40ca04f680a06fcf31e2151a6.tar.gz
cpython-40a77c33819606b40ca04f680a06fcf31e2151a6.tar.bz2
do not allow reading negative values with getstr()
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 2611c09..ca80c73 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- In the curses module, raise an error if window.getstr() is passed a negative
+ value.
+
- Issue #27758: Fix possible integer overflow in the _csv module for large record
lengths.