| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. (#912) | T. Wouters | 2017-03-30 | 1 | -0/+8 |
| | | | | | | | Fix the use of recursion in itertools.chain.from_iterable. Using recursion is unnecessary, and can easily cause stack overflows, especially when building in low optimization modes or with Py_DEBUG enabled. (cherry picked from commit 5466d4af5fe76ec0a5fbc8a05675287d9e8e9d14) | ||||
| * | Issue #28322: Fixed possible crashes when unpickle itertools objects from | Serhiy Storchaka | 2016-10-02 | 1 | -0/+32 |
| | | | | | incorrect pickle data. Based on patch by John Leitch. | ||||
| * | Issue #28019: itertools.count() no longer rounds non-integer step in range | Serhiy Storchaka | 2016-09-10 | 1 | -5/+23 |
| | | | | | between 1.0 and 2.0 to 1. | ||||
| * | Document another recipe for itertools: all_equal(). Inspired by David Beazley. | Raymond Hettinger | 2016-03-07 | 1 | -0/+8 |
| | | |||||
| * | Issue #25718: Fixed pickling and copying the accumulate() iterator with ↵ | Serhiy Storchaka | 2016-03-06 | 1 | -0/+10 |
| | | | | | total is None. | ||||
| * | Issue #25021: Merge 3.4 to 3.5 | Kristján Valur Jónsson | 2015-09-12 | 1 | -0/+10 |
| |\ | |||||
| | * | Issue #25021: Merge from 3.3 to 3.4 | Kristján Valur Jónsson | 2015-09-12 | 1 | -0/+10 |
| | |\ | |||||
| | | * | Issue #25021: Correctly make sure that product.__setstate__ does not access | Kristján Valur Jónsson | 2015-09-12 | 1 | -0/+10 |
| | | | | | | | | | | | | | invalid memory. | ||||
| * | | | Make some tests more frienly to MemoryError. | Serhiy Storchaka | 2015-03-28 | 1 | -2/+6 |
| |\ \ \ | |/ / | | | | | | | Free memory, unlock hanging threads. | ||||
| | * | | Make some tests more frienly to MemoryError. | Serhiy Storchaka | 2015-03-28 | 1 | -2/+6 |
| | | | | | | | | | | | | | Free memory, unlock hanging threads. | ||||
| * | | | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -1/+1 |
| |\ \ \ | |/ / | | | | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. Added few tests for __truediv__, __floordiv__ and __matmul__. | ||||
| | * | | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. | ||||
| * | | | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. | Serhiy Storchaka | 2015-02-02 | 1 | -7/+5 |
| |\ \ \ | |/ / | | | | | | | Used PyMem_New to check overflow. | ||||
| | * | | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. | Serhiy Storchaka | 2015-02-02 | 1 | -7/+5 |
| | |\ \ | | |/ | | | | | | | Used PyMem_New to check overflow. | ||||
| | | * | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. | Serhiy Storchaka | 2015-02-02 | 1 | -7/+5 |
| | | | | | | | | | | | | | Used PyMem_New to check overflow. | ||||
| * | | | merge 3.4 (#23364, #23363) | Benjamin Peterson | 2015-02-02 | 1 | -0/+12 |
| |\ \ \ | |/ / | |||||
| | * | | merge 3.3 (#23364, #23363) | Benjamin Peterson | 2015-02-02 | 1 | -0/+12 |
| | |\ \ | | |/ | |||||
| | | * | check for overflows in permutations() and product() (closes #23363, closes ↵ | Benjamin Peterson | 2015-02-02 | 1 | -0/+12 |
| | | | | | | | | | | | | | #23364) | ||||
| * | | | merge 3.4 (#23365) | Benjamin Peterson | 2015-02-02 | 1 | -1/+5 |
| |\ \ \ | |/ / | |||||
| | * | | merge 3.3 (#23365) | Benjamin Peterson | 2015-02-02 | 1 | -1/+5 |
| | |\ \ | | |/ | |||||
| | | * | check for overflow in combinations_with_replacement (closes #23365) | Benjamin Peterson | 2015-02-02 | 1 | -1/+5 |
| | | | | |||||
| * | | | merge 3.4 (#23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+5 |
| |\ \ \ | |/ / | |||||
| | * | | merge 3.3 (#23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+5 |
| | |\ \ | | |/ | |||||
| | | * | detect overflow in combinations (closes #23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+5 |
| | | | | |||||
| * | | | Issue #22777: Test pickling with all protocols. | Serhiy Storchaka | 2014-12-15 | 1 | -68/+102 |
| |\ \ \ | |/ / | |||||
| | * | | Issue #22777: Test pickling with all protocols. | Serhiy Storchaka | 2014-12-15 | 1 | -68/+102 |
| | | | | |||||
| * | | | PEP 479: Use the return-keyword instead of raising StopIteration inside a ↵ | Raymond Hettinger | 2014-11-23 | 1 | -2/+0 |
| |/ / | | | | | | | generators. | ||||
| * | | allow test to work on implementations not using ref-counting (closes #22265) | Benjamin Peterson | 2014-08-24 | 1 | -0/+1 |
| | | | |||||
| * | | Issue #19145: Fix handling of negative values for a "times" keyword ↵ | Raymond Hettinger | 2014-06-25 | 1 | -0/+13 |
| | | | | | | | | | | | | | argument to itertools.repeat()> (Patch contributed by Vajrasky Kok.) | ||||
| * | | Issue #21321: itertools.islice() now releases the reference to the source ↵ | Antoine Pitrou | 2014-04-29 | 1 | -2/+11 |
| | | | | | | | | | | | | | iterator when the slice is exhausted. Patch by Anton Afanasyev. | ||||
| * | | Issue #21346: Fix typo, make message consistent in test_itertools. | Zachary Ware | 2014-04-24 | 1 | -1/+1 |
| | | | | | | | | | Pointed out by Brian Kearns. | ||||
| * | | Issue #18652: Add an itertools recipe for first_true() | Raymond Hettinger | 2014-04-02 | 1 | -0/+16 |
| | | | |||||
| * | | Issue #15475: Add __sizeof__ implementations for itertools objects. | Serhiy Storchaka | 2013-12-09 | 1 | -1/+42 |
| | | | |||||
| * | | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -7/+7 |
| |\ \ | |/ | | | | | error messages and comments. | ||||
| | * | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -7/+7 |
| | | | | | | | | | error messages and comments. | ||||
| * | | Revert a premature patch for issue #14010 (changeset 846bd418aee5). | Serhiy Storchaka | 2013-04-06 | 1 | -116/+1 |
| |\ \ | |/ | |||||
| | * | Revert a premature patch for issue #14010 (changeset aaaf36026511). | Serhiy Storchaka | 2013-04-06 | 1 | -116/+1 |
| | | | |||||
| * | | Issue #14010: Fix a crash when iterating or deleting deeply nested filters | Serhiy Storchaka | 2013-04-06 | 1 | -1/+116 |
| |\ \ | |/ | | | | | (builting and in itertools module, i.e. map(), itertools.chain(), etc). | ||||
| | * | Issue #14010: Fix a crash when iterating or deleting deeply nested filters | Serhiy Storchaka | 2013-04-06 | 1 | -1/+116 |
| | | | | | | | | | (builting and in itertools module, i.e. map(), itertools.chain(), etc). | ||||
| * | | Optimize the test for issue #13454. | Serhiy Storchaka | 2013-01-26 | 1 | -4/+2 |
| |\ \ | |/ | | | | | Now it requires almost 4x less memory and is almost 2x faster. | ||||
| | * | Optimize the test for issue #13454. | Serhiy Storchaka | 2013-01-26 | 1 | -4/+2 |
| | |\ | | | | | | | | | | Now it requires almost 4x less memory and is almost 2x faster. | ||||
| | | * | Optimize the test for issue #13454. | Serhiy Storchaka | 2013-01-26 | 1 | -4/+2 |
| | | | | | | | | | | | | | Now it requires almost 4x less memory and is almost 2x faster. | ||||
| * | | | Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() | Serhiy Storchaka | 2013-01-25 | 1 | -0/+8 |
| |\ \ \ | |/ / | | | | | | | if all other iterators were very advanced before. | ||||
| | * | | Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() | Serhiy Storchaka | 2013-01-25 | 1 | -0/+8 |
| | |\ \ | | |/ | | | | | | | if all other iterators were very advanced before. | ||||
| | | * | Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() | Serhiy Storchaka | 2013-01-25 | 1 | -0/+8 |
| | | | | | | | | | | | | | if all other iterators were very advanced before. | ||||
| * | | | Issue #16148: implemented PEP 424 | Armin Ronacher | 2012-10-06 | 1 | -3/+2 |
| |/ / | |||||
| * | | Issue #14288: Serialization support for builtin iterators. | Kristján Valur Jónsson | 2012-04-03 | 1 | -28/+358 |
| | | | |||||
| * | | Mark itertools tests of tuple reuse as being specific to CPython. | Alex Gaynor | 2011-07-17 | 1 | -6/+15 |
| | | | |||||
| * | | Merge 3.2 | Kristjan Valur Jonsson | 2011-03-30 | 1 | -0/+5 |
| |\ \ | |/ | |||||
| | * | Merge 3.1 | Kristjan Valur Jonsson | 2011-03-30 | 1 | -0/+5 |
| | |\ | |||||
