commit | dda9121ad1108d625d546548df787083a0f7a5b5 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Feb 01 21:34:07 2015 -0500 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Feb 01 21:34:07 2015 -0500 |
tree | 4b9a254cfa58b0607daed4cd0d215ba6ca84d1aa | |
parent | 17845c1786d8659dce42a3b906d0ae31fc1c3dac [diff] [blame] |
check for overflows in permutations() and product() (closes #23363, closes #23364)
diff --git a/Misc/NEWS b/Misc/NEWS index b213a29..494a386 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -18,6 +18,10 @@ Library ------- +- Issue #23363: Fix possible overflow in itertools.permutations. + +- Issue #23364: Fix possible overflow in itertools.product. + - Issue #23365: Fixed possible integer overflow in itertools.combinations_with_replacement.