| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. (#913) | T. Wouters | 2017-03-30 | 1 | -24/+28 |
| | | | | | | | 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 #27626: Spelling fixes in docs, comments and internal names | Martin Panter | 2016-07-28 | 1 | -1/+1 |
| | | | | | Based on patch by Ville Skyttä. | ||||
| * | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF | Serhiy Storchaka | 2016-04-10 | 1 | -1/+1 |
| | | | | | in places where Py_DECREF was used. | ||||
| * | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 1 | -1/+1 |
| | | |||||
| * | remove some copyright notices supserseded by the toplevel ones | Benjamin Peterson | 2016-01-01 | 1 | -2/+0 |
| | | |||||
| * | Issue #20440: Massive replacing unsafe attribute setting code with special | Serhiy Storchaka | 2015-12-24 | 1 | -2/+1 |
| | | | | | macro Py_SETREF. | ||||
| * | Issue #25523: Backported a-to-an corrections. | Serhiy Storchaka | 2015-11-02 | 1 | -1/+1 |
| | | |||||
| * | Fixed indentation of Python examples in C comments. | Serhiy Storchaka | 2015-06-10 | 1 | -11/+11 |
| | | |||||
| * | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. | Serhiy Storchaka | 2015-02-02 | 1 | -20/+6 |
| | | | | | Used PyMem_New to check overflow. | ||||
| * | check for overflows in permutations() and product() (closes #23363, closes ↵ | Benjamin Peterson | 2015-02-02 | 1 | -2/+16 |
| | | | | | #23364) | ||||
| * | check for overflow in combinations_with_replacement (closes #23365) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
| | | |||||
| * | detect overflow in combinations (closes #23366) | Benjamin Peterson | 2015-02-02 | 1 | -0/+4 |
| | | |||||
| * | 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/+10 |
| | | | | | | | iterator when the slice is exhausted. Patch by Anton Afanasyev. | ||||
| * | Close #18912: Fix indentation in docstring | Eli Bendersky | 2013-09-03 | 1 | -4/+4 |
| | | | | | Contributed by Jeroen Van Goey | ||||
| * | Revert a premature patch for issue #14010 (changeset d17d10c84d27). | Serhiy Storchaka | 2013-04-06 | 1 | -65/+10 |
| | | |||||
| * | Issue #14010: Fix a crash when iterating or deleting deeply nested filters | Serhiy Storchaka | 2013-04-06 | 1 | -10/+65 |
| | | | | | in itertools module (i.e. itertools.izip(), itertools.chain(), etc). | ||||
| * | 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 | -5/+12 |
| | | | | | | | errors correctly. Patch by Serhiy Storchaka. | ||||
| * | Backport issue #12973 itertools fix from 3.x. | Mark Dickinson | 2011-09-24 | 1 | -1/+3 |
| | | |||||
| * | Issue #10323: Predictable final state for slice(). | Raymond Hettinger | 2010-11-30 | 1 | -3/+4 |
| | | |||||
| * | Remove extra ] from itertools.count docstring. | Ezio Melotti | 2010-06-11 | 1 | -1/+1 |
| | | |||||
| * | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 1 | -3042/+3042 |
| | | |||||
| * | Handle step values other than one. | Raymond Hettinger | 2009-11-30 | 1 | -1/+2 |
| | | |||||
| * | Issue 7410: deepcopy of itertools.count resets the count | Raymond Hettinger | 2009-11-30 | 1 | -1/+16 |
| | | |||||
| * | 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 |
| | | |||||
| * | Issue 6305: Clarify error message for large arguments to itertools.islice(). | Raymond Hettinger | 2009-06-23 | 1 | -3/+3 |
| | | |||||
| * | fix compiler warnings | Benjamin Peterson | 2009-02-21 | 1 | -6/+6 |
| | | |||||
| * | Fix keyword arguments for itertools.count(). | Raymond Hettinger | 2009-02-21 | 1 | -28/+43 |
| | | | | | Step arg without a start arg was ignored. | ||||
| * | Add keyword arg support to itertools.repeat(). | Raymond Hettinger | 2009-02-19 | 1 | -7/+6 |
| | | |||||
| * | Add keyword arg support to itertools.compress(). | Raymond Hettinger | 2009-02-19 | 1 | -6/+4 |
| | | |||||
| * | PyList_Append() can fail | Benjamin Peterson | 2009-02-16 | 1 | -2/+4 |
| | | |||||
| * | fix compiler warnings | Benjamin Peterson | 2009-02-16 | 1 | -5/+5 |
| | | |||||
| * | Add GC support to count() objects. Backport candidate. | Raymond Hettinger | 2009-02-16 | 1 | -4/+14 |
| | | |||||
| * | Add keyword argument support to itertools.count(). | Raymond Hettinger | 2009-02-14 | 1 | -6/+5 |
| | | |||||
| * | Fix spaces/tabs in example. | Raymond Hettinger | 2009-02-12 | 1 | -4/+3 |
| | | |||||
| * | Issue 5032: added a step argument to itertools.count() and allowed ↵ | Raymond Hettinger | 2009-02-12 | 1 | -33/+86 |
| | | | | | non-integer arguments. | ||||
| * | Issue 5171: itertools.product docstring missing 'repeat' argument | Raymond Hettinger | 2009-02-09 | 1 | -0/+3 |
| | | |||||
| * | Fix typo. | Raymond Hettinger | 2009-01-29 | 1 | -1/+1 |
| | | |||||
| * | Update itertools.__doc__ to include all tools. | Raymond Hettinger | 2009-01-29 | 1 | -5/+12 |
| | | |||||
| * | Promote combinations_with_replacement() from a recipe to a regular itertool. | Raymond Hettinger | 2009-01-27 | 1 | -2/+251 |
| | | |||||
| * | Promote compress() from a recipe to being a regular itertool. | Raymond Hettinger | 2009-01-25 | 1 | -0/+157 |
| | | |||||
| * | #3720: Interpreter crashes when an evil iterator removes its own next function. | Amaury Forgeot d'Arc | 2009-01-12 | 1 | -11/+0 |
| | | | | | | | Now the slot is filled with a function that always raises. Will not backport: extensions compiled with 2.6.x would not run on 2.6.0. | ||||
| * | Forward port r68394 for issue 4816. | Raymond Hettinger | 2009-01-08 | 1 | -10/+2 |
| | | |||||
| * | #2536: fix itertools.permutations and itertools.combinations docstrings. | Georg Brandl | 2008-06-10 | 1 | -3/+3 |
| | | |||||
| * | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -6/+6 |
| | | | | | | | | http://mail.python.org/pipermail/python-dev/2008-June/079988.html Python 2.6 should stick with PyString_* in its codebase. The PyBytes_* names in the spirit of 3.0 are available via a #define only. See the email thread. | ||||
| * | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -6/+6 |
| | | |||||
| * | Remove itertools warnings I had added before the 2-to-3 handled the migration. | Raymond Hettinger | 2008-03-19 | 1 | -25/+0 |
| | | |||||
| * | The filter() function does support a None argument in Py3.0. | Raymond Hettinger | 2008-03-19 | 1 | -9/+0 |
| | | |||||
