Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 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). | ||||
* | 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 #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 |
| |\ | |||||
| | * | Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle. | Kristjan Valur Jonsson | 2011-03-30 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | ti can raise an exception even if PyLong_Check() has succeeded. | ||||
* | | | Add optional *func* argument to itertools.accumulate(). | Raymond Hettinger | 2011-03-28 | 1 | -1/+11 |
|/ / | |||||
* | | #11565: Merge with 3.1. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 | 1 | -1/+1 |
| | | |||||
| * | Issue #10323: Predictable final state for slice(). | Raymond Hettinger | 2010-11-30 | 1 | -0/+5 |
| | | |||||
| * | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -11/+11 |
| | | | | | | | | | | | | | | | | | | | | 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 Hettinger | 2009-11-30 | 1 | -0/+9 |
| | | |||||
| * | Fix exception handling in itertools.izip_longest(). | Raymond Hettinger | 2009-11-01 | 1 | -0/+40 |
| | | |||||
| * | Merged revisions 73715 via svnmerge from | Georg Brandl | 2009-08-13 | 1 | -7/+7 |
| | | | | | | | | | | | | | | | | | | | | 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 Hettinger | 2010-12-03 | 1 | -0/+1 |
| | | |||||
* | | Simplify the signature for itertools.accumulate() to match numpy. Handle ↵ | Raymond Hettinger | 2010-12-03 | 1 | -8/+8 |
| | | | | | | | | one item iterable the same way as min()/max(). | ||||
* | | Add itertools.accumulate(). | Raymond Hettinger | 2010-12-01 | 1 | -0/+35 |
| | | |||||
* | | Issue #10323: Predictable final state for slice(). | Raymond Hettinger | 2010-11-30 | 1 | -0/+5 |
| | | |||||
* | | #9424: Replace deprecated assert* methods in the Python test suite. | Ezio Melotti | 2010-11-20 | 1 | -11/+11 |
| | | |||||
* | | use assert[Not]In where appropriate | Ezio Melotti | 2010-01-23 | 1 | -1/+1 |
| | | |||||
* | | Issue 7410: deepcopy of itertools.count() reset the count. | Raymond Hettinger | 2009-11-30 | 1 | -0/+9 |
| | | |||||
* | | Fix exception handling in itertools.izip_longest(). | Raymond Hettinger | 2009-11-01 | 1 | -0/+40 |
| | | |||||
* | | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -7/+7 |
|/ | |||||
* | Port r69837: Fix keyword arguments for itertools.count(). Step arg without a ↵ | Raymond Hettinger | 2009-02-21 | 1 | -0/+4 |
| | | | | start arg was ignored. | ||||
* | Add some cross-references to the docs. Simplify the python code equivalent ↵ | Raymond Hettinger | 2009-02-19 | 1 | -3/+3 |
| | | | | for zip(). Supply an optional argument for the nth() recipe. | ||||
* | Add keyword arg support to itertools.repeat(). | Raymond Hettinger | 2009-02-19 | 1 | -0/+1 |
| | |||||
* | Add keyword arg support to itertools.compress(). | Raymond Hettinger | 2009-02-19 | 1 | -0/+1 |
| | |||||
* | Add GC support to count() objects. | Raymond Hettinger | 2009-02-16 | 1 | -0/+5 |
| | |||||
* | Add keyword argument support to itertools.count(). | Raymond Hettinger | 2009-02-14 | 1 | -0/+1 |
| | |||||
* | One more test. | Raymond Hettinger | 2009-02-12 | 1 | -0/+3 |
| | |||||
* | Add an extra testcase. | Raymond Hettinger | 2009-02-12 | 1 | -0/+3 |
| | |||||
* | Issue 5032: added a step argument to itertools.count() and allowed ↵ | Raymond Hettinger | 2009-02-12 | 1 | -1/+36 |
| | | | | non-integer arguments. | ||||
* | Minor doc fixes. | Raymond Hettinger | 2009-02-04 | 1 | -3/+6 |
| | |||||
* | Add more tests for the powerset() recipe. | Raymond Hettinger | 2009-01-27 | 1 | -0/+6 |
| | |||||
* | More exhaustive combinatoric checks. | Raymond Hettinger | 2009-01-27 | 1 | -16/+28 |
| | |||||
* | Stronger tests for combinatoric relationships. | Raymond Hettinger | 2009-01-27 | 1 | -1/+5 |
| | |||||
* | Add tests to verify combinatoric relationships. | Raymond Hettinger | 2009-01-27 | 1 | -0/+26 |
| | |||||
* | Beautify grouper() recipe in docs. | Raymond Hettinger | 2009-01-27 | 1 | -1/+1 |
| | |||||
* | Forward port r69001: itertools.combinations_with_replacement(). | Raymond Hettinger | 2009-01-27 | 1 | -38/+78 |
| | |||||
* | Forward port r68941 adding itertools.compress(). | Raymond Hettinger | 2009-01-26 | 1 | -8/+32 |
| | |||||
* | Backport r68942: update powerset() recipe. | Raymond Hettinger | 2009-01-26 | 1 | -7/+5 |
| | |||||
* | Merge in r68394 fixing itertools.permutations() and combinations(). | Raymond Hettinger | 2009-01-08 | 1 | -9/+33 |
| | |||||
* | Issue #4615. Document how to use itertools for de-duping. | Raymond Hettinger | 2009-01-02 | 1 | -0/+36 |
| | |||||
* | Merged revisions 65259,65263,65296,65307,65321 via svnmerge from | Benjamin Peterson | 2008-07-31 | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r65259 | benjamin.peterson | 2008-07-27 10:22:14 -0500 (Sun, 27 Jul 2008) | 1 line clarify Popen argument ........ r65263 | andrew.kuchling | 2008-07-28 12:04:48 -0500 (Mon, 28 Jul 2008) | 1 line Clarify wording ........ r65296 | raymond.hettinger | 2008-07-30 02:27:30 -0500 (Wed, 30 Jul 2008) | 1 line Neaten-up the itertools recipes. ........ r65307 | benjamin.peterson | 2008-07-30 08:46:53 -0500 (Wed, 30 Jul 2008) | 1 line getrandombits is actually getrandbits ........ r65321 | raymond.hettinger | 2008-07-30 20:19:50 -0500 (Wed, 30 Jul 2008) | 4 lines Alter recipe to show how to call izip_longest() with both a keyword argument and star arguments. ........ |