Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | merge | Raymond Hettinger | 2015-07-28 | 1 | -5/+7 |
|\ | |||||
| * | Issue #24735: Fix invalid memory access in combinations_with_replacement() | Raymond Hettinger | 2015-07-28 | 1 | -5/+7 |
| | | |||||
* | | Fixed indentation of Python examples in C comments. | Serhiy Storchaka | 2015-06-10 | 1 | -11/+11 |
|\ \ | |/ | |||||
| * | Fixed indentation of Python examples in C comments. | Serhiy Storchaka | 2015-06-10 | 1 | -11/+11 |
| | | |||||
* | | Issue #22883: Got rid of outdated references to PyInt and PyString in comments. | Serhiy Storchaka | 2015-02-17 | 1 | -1/+1 |
|/ | |||||
* | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. | Serhiy Storchaka | 2015-02-02 | 1 | -20/+6 |
|\ | | | | | | | Used PyMem_New to check overflow. | ||||
| * | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. | Serhiy Storchaka | 2015-02-02 | 1 | -20/+6 |
| | | | | | | | | Used PyMem_New to check overflow. | ||||
* | | merge 3.3 (#23364, #23363) | Benjamin Peterson | 2015-02-02 | 1 | -2/+16 |
|\ \ | |/ | |||||
| * | check for overflows in permutations() and product() (closes #23363, closes ↵ | Benjamin Peterson | 2015-02-02 | 1 | -2/+16 |
| | | | | | | | | #23364) | ||||
* | | merge 3.3 (#23365) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | check for overflow in combinations_with_replacement (closes #23365) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
| | | |||||
* | | merge 3.3 (#23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | detect overflow in combinations (closes #23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
| | | |||||
| * | Issue 18752: Make chain.from_iterable() more visible in the documentation. | Raymond Hettinger | 2013-09-09 | 1 | -1/+2 |
| | | |||||
* | | Issue #19145: Fix handling of negative values for a "times" keyword ↵ | Raymond Hettinger | 2014-06-25 | 1 | -2/+5 |
| | | | | | | | | | | | | 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 | -3/+22 |
| | | | | | | | | | | | | iterator when the slice is exhausted. Patch by Anton Afanasyev. | ||||
* | | Issue #15475: Add __sizeof__ implementations for itertools objects. | Serhiy Storchaka | 2013-12-09 | 1 | -0/+51 |
| | | |||||
* | | Add a comment making it explicit that itertools.tee() is already 64bit-safe ↵ | Antoine Pitrou | 2013-09-20 | 1 | -2/+2 |
| | | | | | | | | (issue #19049) | ||||
* | | Issue 18752: Make chain.from_iterable() more visible in the documentation. | Raymond Hettinger | 2013-09-09 | 1 | -1/+2 |
|/ | |||||
* | cwr_next(): move invariants out of loops. | Tim Peters | 2013-09-03 | 1 | -16/+12 |
| | | | | This simplifies and clarifies the code, and gives a small speedup. | ||||
* | Issue #18912: Fix indentation in docstring | Eli Bendersky | 2013-09-03 | 1 | -4/+4 |
| | | | | Contributed by Jeroen Van Goey | ||||
* | Closes #18220: expand itertools.islice docstring to 2 lines | Andrew Kuchling | 2013-06-22 | 1 | -1/+2 |
| | |||||
* | Close #18285: add 'repeat' parameter to docstring for product | Andrew Kuchling | 2013-06-22 | 1 | -1/+1 |
| | |||||
* | Closes #18239: correct description of count() in module docstring | Andrew Kuchling | 2013-06-21 | 1 | -1/+1 |
| | |||||
* | Revert a premature patch for issue #14010 (changeset aaaf36026511). | Serhiy Storchaka | 2013-04-06 | 1 | -46/+1 |
| | |||||
* | Issue #14010: Fix a crash when iterating or deleting deeply nested filters | Serhiy Storchaka | 2013-04-06 | 1 | -1/+46 |
| | | | | (builting and in itertools module, i.e. map(), itertools.chain(), etc). | ||||
* | Clean trailing whitespace in itertoolsmodule.c. | Serhiy Storchaka | 2013-01-25 | 1 | -8/+8 |
|\ | |||||
| * | Clean trailing whitespace in itertoolsmodule.c. | Serhiy Storchaka | 2013-01-25 | 1 | -4/+4 |
| | | |||||
* | | Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() | Serhiy Storchaka | 2013-01-25 | 1 | -1/+20 |
|\ \ | |/ | | | | | 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 | -1/+20 |
| | | | | | | | | if all other iterators were very advanced before. | ||||
* | | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle ↵ | Antoine Pitrou | 2012-08-15 | 1 | -7/+12 |
|\ \ | |/ | | | | | | | | | errors correctly. Patch by Serhiy Storchaka. | ||||
| * | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle ↵ | Antoine Pitrou | 2012-08-15 | 1 | -4/+9 |
| | | | | | | | | | | | | errors correctly. Patch by Serhiy Storchaka. | ||||
* | | Add safecase to silence Win64 warning. | Martin v. Löwis | 2012-05-15 | 1 | -1/+2 |
| | | |||||
* | | Issue #14288: Serialization support for builtin iterators. | Kristján Valur Jónsson | 2012-04-03 | 1 | -53/+837 |
| | | |||||
* | | Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. | Martin v. Löwis | 2011-10-14 | 1 | -2/+2 |
| | | |||||
* | | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -1/+1 |
| | | |||||
* | | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -1/+3 |
| | | | | | | | | Thanks to Konrad Schöbel and Jasper Schulz for helping with the mass-editing. | ||||
* | | Merge #12973 itertools fix. | Mark Dickinson | 2011-09-24 | 1 | -1/+3 |
|\ \ | |/ | |||||
| * | Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks ↵ | Mark Dickinson | 2011-09-24 | 1 | -1/+3 |
| | | | | | | | | Stefan Krah. | ||||
* | | Merge 3.2 | Kristjan Valur Jonsson | 2011-03-30 | 1 | -3/+6 |
|\ \ | |/ | |||||
| * | Merge 3.1 | Kristjan Valur Jonsson | 2011-03-30 | 1 | -3/+6 |
| |\ | |||||
| | * | Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle. | Kristjan Valur Jonsson | 2011-03-30 | 1 | -3/+6 |
| | | | | | | | | | | | | | | | ti can raise an exception even if PyLong_Check() has succeeded. | ||||
| | * | Issue #10323: Predictable final state for slice(). | Raymond Hettinger | 2010-11-30 | 1 | -3/+4 |
| | | | |||||
| | * | Merged revisions 81891 via svnmerge from | Ezio Melotti | 2010-06-11 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81891 | ezio.melotti | 2010-06-11 05:26:42 +0300 (Fri, 11 Jun 2010) | 9 lines Merged revisions 81889 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81889 | ezio.melotti | 2010-06-11 05:21:25 +0300 (Fri, 11 Jun 2010) | 1 line Remove extra ] from itertools.count docstring. ........ ................ | ||||
| | * | Recorded merge of revisions 81032 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -2628/+2628 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ................ r81032 | antoine.pitrou | 2010-05-09 17:52:27 +0200 (dim., 09 mai 2010) | 9 lines Recorded merge of revisions 81029 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines Untabify C files. Will watch buildbots. ........ ................ | ||||
| | * | Issue #7410: deepcopy of itertools.count was resetting the count. | Raymond Hettinger | 2009-11-30 | 1 | -1/+17 |
| | | | |||||
| | * | Fix docstrings for itertools combinatoric functions. | Raymond Hettinger | 2009-11-19 | 1 | -4/+4 |
| | | | |||||
| | * | Fix exception handling in itertools.izip_longest(). | Raymond Hettinger | 2009-11-01 | 1 | -35/+37 |
| | | | |||||
* | | | Update docstrings for itertools.accumulate(). | Raymond Hettinger | 2011-03-28 | 1 | -3/+3 |
| | | | |||||
* | | | Add optional *func* argument to itertools.accumulate(). | Raymond Hettinger | 2011-03-28 | 1 | -4/+14 |
|/ / |