diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-02-02 02:34:07 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-02-02 02:34:07 (GMT) |
commit | 0eaabf1c05127793753dbb3641d4d107b284ae77 (patch) | |
tree | 339d052650eadbf997c68401f6917c2fcc6654bd /Misc | |
parent | 6f082297b260d3eb4975d6d4305eba6fd26f9ae9 (diff) | |
download | cpython-0eaabf1c05127793753dbb3641d4d107b284ae77.zip cpython-0eaabf1c05127793753dbb3641d4d107b284ae77.tar.gz cpython-0eaabf1c05127793753dbb3641d4d107b284ae77.tar.bz2 |
check for overflows in permutations() and product() (closes #23363, closes #23364)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -16,6 +16,10 @@ Core and Builtins Library ------- +- Issue #23363: Fix possible overflow in itertools.permutations. + +- Issue #23364: Fix possible overflow in itertools.product. + - Issue #23369: Fixed possible integer overflow in _json.encode_basestring_ascii. |