aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_itertools.py
Commit message (Collapse)AuthorAge
* Issue #21321: itertools.islice() now releases the reference to the source ↵Antoine Pitrou2014-04-29
| | | | | | iterator when the slice is exhausted. Patch by Anton Afanasyev.
* Issue #21346: Fix typo, make message consistent in test_itertools.Zachary Ware2014-04-24
| | | | Pointed out by Brian Kearns.
* Issue #18652: Add an itertools recipe for first_true()Raymond Hettinger2014-04-02
|
* Issue #15475: Add __sizeof__ implementations for itertools objects.Serhiy Storchaka2013-12-09
|
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-27
|\ | | | | | | error messages and comments.
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-27
| | | | | | | | error messages and comments.
* | Revert a premature patch for issue #14010 (changeset 846bd418aee5).Serhiy Storchaka2013-04-06
|\|
| * Revert a premature patch for issue #14010 (changeset aaaf36026511).Serhiy Storchaka2013-04-06
| |
* | Issue #14010: Fix a crash when iterating or deleting deeply nested filtersSerhiy Storchaka2013-04-06
|\| | | | | | | (builting and in itertools module, i.e. map(), itertools.chain(), etc).
| * Issue #14010: Fix a crash when iterating or deleting deeply nested filtersSerhiy Storchaka2013-04-06
| | | | | | | | (builting and in itertools module, i.e. map(), itertools.chain(), etc).
* | Optimize the test for issue #13454.Serhiy Storchaka2013-01-26
|\| | | | | | | Now it requires almost 4x less memory and is almost 2x faster.
| * Optimize the test for issue #13454.Serhiy Storchaka2013-01-26
| |\ | | | | | | | | | Now it requires almost 4x less memory and is almost 2x faster.
| | * Optimize the test for issue #13454.Serhiy Storchaka2013-01-26
| | | | | | | | | | | | 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 Storchaka2013-01-25
|\| | | | | | | | | | | if all other iterators were very advanced before.
| * | Issue #13454: Fix a crash when deleting an iterator created by itertools.tee()Serhiy Storchaka2013-01-25
| |\| | | | | | | | | | if all other iterators were very advanced before.
| | * Issue #13454: Fix a crash when deleting an iterator created by itertools.tee()Serhiy Storchaka2013-01-25
| | | | | | | | | | | | if all other iterators were very advanced before.
* | | Issue #16148: implemented PEP 424Armin Ronacher2012-10-06
|/ /
* | Issue #14288: Serialization support for builtin iterators.Kristján Valur Jónsson2012-04-03
| |
* | Mark itertools tests of tuple reuse as being specific to CPython.Alex Gaynor2011-07-17
| |
* | Merge 3.2Kristjan Valur Jonsson2011-03-30
|\|
| * Merge 3.1Kristjan Valur Jonsson2011-03-30
| |\
| | * Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle.Kristjan Valur Jonsson2011-03-30
| | | | | | | | | | | | | | | ti can raise an exception even if PyLong_Check() has succeeded.
* | | Add optional *func* argument to itertools.accumulate().Raymond Hettinger2011-03-27
|/ /
* | #11565: Merge with 3.1.Ezio Melotti2011-03-16
|\|
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-16
| |
| * Issue #10323: Predictable final state for slice().Raymond Hettinger2010-11-30
| |
| * Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-21
| | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
| * Issue #7410: deepcopy of itertools.count was resetting the count.Raymond Hettinger2009-11-30
| |
| * Fix exception handling in itertools.izip_longest().Raymond Hettinger2009-11-01
| |
| * Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-13
| | | | | | | | | | | | | | | | | | | | svn+ssh://svn.python.org/python/branches/py3k ........ r73715 | benjamin.peterson | 2009-07-01 01:06:06 +0200 (Mi, 01 Jul 2009) | 1 line convert old fail* assertions to assert* ........
* | Update the itertools.accumulate() docs.Raymond Hettinger2010-12-03
| |
* | Simplify the signature for itertools.accumulate() to match numpy. Handle ↵Raymond Hettinger2010-12-03
| | | | | | | | one item iterable the same way as min()/max().
* | Add itertools.accumulate().Raymond Hettinger2010-12-01
| |
* | Issue #10323: Predictable final state for slice().Raymond Hettinger2010-11-30
| |
* | #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-20
| |
* | use assert[Not]In where appropriateEzio Melotti2010-01-23
| |
* | Issue 7410: deepcopy of itertools.count() reset the count.Raymond Hettinger2009-11-30
| |
* | Fix exception handling in itertools.izip_longest().Raymond Hettinger2009-11-01
| |
* | convert old fail* assertions to assert*Benjamin Peterson2009-06-30
|/
* Port r69837: Fix keyword arguments for itertools.count(). Step arg without a ↵Raymond Hettinger2009-02-21
| | | | start arg was ignored.
* Add some cross-references to the docs. Simplify the python code equivalent ↵Raymond Hettinger2009-02-19
| | | | for zip(). Supply an optional argument for the nth() recipe.
* Add keyword arg support to itertools.repeat().Raymond Hettinger2009-02-19
|
* Add keyword arg support to itertools.compress().Raymond Hettinger2009-02-19
|
* Add GC support to count() objects.Raymond Hettinger2009-02-16
|
* Add keyword argument support to itertools.count().Raymond Hettinger2009-02-14
|
* One more test.Raymond Hettinger2009-02-12
|
* Add an extra testcase.Raymond Hettinger2009-02-12
|
* Issue 5032: added a step argument to itertools.count() and allowed ↵Raymond Hettinger2009-02-12
| | | | non-integer arguments.
* Minor doc fixes.Raymond Hettinger2009-02-04
|
* Add more tests for the powerset() recipe.Raymond Hettinger2009-01-27
|