diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-08-16 04:40:14 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-08-16 04:40:14 (GMT) |
commit | 432ea4ff375f920fa4a469d34e5dad56fb33f915 (patch) | |
tree | 909cb271045d26b32b535a53199f0f50d79d776f /Misc | |
parent | 5e4aafa258fa85d1aebf469ddf8f5d43b7671c38 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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. |