commit | 17845c1786d8659dce42a3b906d0ae31fc1c3dac | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sun Feb 01 21:10:47 2015 -0500 |
committer | Benjamin Peterson <benjamin@python.org> | Sun Feb 01 21:10:47 2015 -0500 |
tree | 4c351b2469560d399d4bf525e10a77b9a4b83ce2 | |
parent | 021dec1c96801401d07c8b84cb51115de641bce9 [diff] [blame] |
check for overflow in combinations_with_replacement (closes #23365)
diff --git a/Misc/NEWS b/Misc/NEWS index 87a1d9f..b213a29 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -18,6 +18,9 @@ Library ------- +- Issue #23365: Fixed possible integer overflow in + itertools.combinations_with_replacement. + - Issue #23366: Fixed possible integer overflow in itertools.combinations. - Issue #23191: fnmatch functions that use caching are now threadsafe.