diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-08-14 01:15:28 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-08-14 01:15:28 (GMT) |
commit | 40a77c33819606b40ca04f680a06fcf31e2151a6 (patch) | |
tree | b8cb6de1e26e2a02bfdb60a79622e548384a4591 /Misc | |
parent | 59b6abd38c04472a256b1b04e8709defb29e44ef (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |