| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors... | Antoine Pitrou | 2012-08-15 | 1 | -7/+12 |
|\ |
|
| * | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors... | Antoine Pitrou | 2012-08-15 | 1 | -4/+9 |
|
|
* | | 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 |
|
|
* | | Merge #12973 itertools fix. | Mark Dickinson | 2011-09-24 | 1 | -1/+3 |
|\ \
| |/ |
|
| * | Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks St... | Mark Dickinson | 2011-09-24 | 1 | -1/+3 |
|
|
* | | 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 |
|
|
| | * | 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 |
|
|
| | * | Recorded merge of revisions 81032 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -2628/+2628 |
|
|
| | * | 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 |
|/ / |
|
* | | Simplify the signature for itertools.accumulate() to match numpy. Handle one... | Raymond Hettinger | 2010-12-03 | 1 | -23/+15 |
|
|
* | | Add itertools.accumulate(). | Raymond Hettinger | 2010-12-01 | 1 | -0/+142 |
|
|
* | | Issue #10323: Predictable final state for slice(). | Raymond Hettinger | 2010-11-30 | 1 | -3/+4 |
|
|
* | | Merged revisions 81889 via svnmerge from | Ezio Melotti | 2010-06-11 | 1 | -1/+1 |
|
|
* | | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -2628/+2628 |
|
|
* | | Issue 7410: deepcopy of itertools.count() reset 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 |
|/ |
|
* | add sys prefix | Benjamin Peterson | 2009-06-24 | 1 | -3/+3 |
|
|
* | Issue 6305: Clarify error message for large arguments to itertools.islice(). | Raymond Hettinger | 2009-06-23 | 1 | -3/+3 |
|
|
* | Merged revisions 69855 via svnmerge from | Benjamin Peterson | 2009-02-21 | 1 | -6/+6 |
|
|
* | Port r69837: Fix keyword arguments for itertools.count(). Step arg without a ... | Raymond Hettinger | 2009-02-21 | 1 | -28/+43 |
|
|
* | 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 |
|
|
* | Merged revisions 69688,69690 via svnmerge from | Benjamin Peterson | 2009-02-16 | 1 | -7/+9 |
|
|
* | Add GC support to count() objects. | 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 non-integ... | Raymond Hettinger | 2009-02-12 | 1 | -31/+83 |
|
|
* | Merged revisions 69466,69480 via svnmerge from | Benjamin Peterson | 2009-02-10 | 1 | -0/+3 |
|
|
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -19/+19 |
|
|
* | Fix typo. | Raymond Hettinger | 2009-01-29 | 1 | -6/+6 |
|
|
* | Update itertools.__doc__ to include all tools. | Raymond Hettinger | 2009-01-29 | 1 | -4/+11 |
|
|
* | Forward port r69001: itertools.combinations_with_replacement(). | Raymond Hettinger | 2009-01-27 | 1 | -2/+251 |
|
|
* | Forward port r68941 adding itertools.compress(). | Raymond Hettinger | 2009-01-26 | 1 | -0/+157 |
|
|
* | Merged revisions 68560 via svnmerge from | Amaury Forgeot d'Arc | 2009-01-12 | 1 | -8/+0 |
|
|
* | Merge in r68394 fixing itertools.permutations() and combinations(). | Raymond Hettinger | 2009-01-08 | 1 | -10/+2 |
|
|
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -7/+21 |
|
|
* | Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,... | Georg Brandl | 2008-06-10 | 1 | -3/+3 |
|
|
* | Fix a refleak | Neal Norwitz | 2008-04-01 | 1 | -1/+1 |
|
|