summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-08-16 04:40:14 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-08-16 04:40:14 (GMT)
commit432ea4ff375f920fa4a469d34e5dad56fb33f915 (patch)
tree909cb271045d26b32b535a53199f0f50d79d776f /Misc
parent5e4aafa258fa85d1aebf469ddf8f5d43b7671c38 (diff)
downloadcpython-432ea4ff375f920fa4a469d34e5dad56fb33f915.zip
cpython-432ea4ff375f920fa4a469d34e5dad56fb33f915.tar.gz
cpython-432ea4ff375f920fa4a469d34e5dad56fb33f915.tar.bz2
fail when negative values are passed to instr()
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 2 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 4e457f0..bff6e00 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,8 +13,8 @@ Core and Builtins
Library
-------
-- In the curses module, raise an error if window.getstr() is passed a negative
- value.
+- In the curses module, raise an error if window.getstr() or window.instr() is
+ passed a negative value.
- Issue #27760: Fix possible integer overflow in binascii.b2a_qp.