| Commit message (Expand) | Author | Age | Files | Lines |
* | Replace map(None, *iterables) with zip(*iterables). | Raymond Hettinger | 2008-01-22 | 1 | -31/+1 |
|
|
* | Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from | Christian Heimes | 2008-01-18 | 1 | -3/+4 |
|
|
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -26/+26 |
|
|
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -9/+9 |
|
|
* | Merged revisions 58221-58741 via svnmerge from | Guido van Rossum | 2007-11-01 | 1 | -9/+62 |
|
|
* | Merged revisions 56467-56482 via svnmerge from | Martin v. Löwis | 2007-07-21 | 1 | -60/+43 |
|
|
* | Add a format specifier %R to PyUnicode_FromFormat(), which embeds | Walter Dörwald | 2007-05-19 | 1 | -12/+2 |
|
|
* | Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror | Walter Dörwald | 2007-05-18 | 1 | -5/+5 |
|
|
* | Merged revisions 55325-55327 via svnmerge from | Guido van Rossum | 2007-05-14 | 1 | -2/+2 |
|
|
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -6/+6 |
|
|
* | Merged revisions 53623-53858 via svnmerge from | Thomas Wouters | 2007-02-23 | 1 | -0/+235 |
|
|
* | Merged revisions 53451-53537 via svnmerge from | Thomas Wouters | 2007-02-01 | 1 | -12/+13 |
|
|
* | Four months of trunk changes (including a few releases...) | Thomas Wouters | 2006-12-13 | 1 | -3/+7 |
|
|
* | Merged revisions 46753-51188 via svnmerge from | Thomas Wouters | 2006-08-11 | 1 | -2/+8 |
|
|
* | Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. | Thomas Wouters | 2006-05-27 | 1 | -29/+29 |
|
|
* | Merge p3yk branch with the trunk up to revision 45595. This breaks a fair | Thomas Wouters | 2006-04-21 | 1 | -19/+72 |
|
|
* | More unconsting. | Martin v. Löwis | 2006-02-27 | 1 | -1/+1 |
|
|
* | Use Py_ssize_t for counts and sizes. | Martin v. Löwis | 2006-02-16 | 1 | -8/+8 |
|
|
* | Renamed _length_cue() to __length_hint__(). See: | Armin Rigo | 2006-02-11 | 1 | -2/+2 |
|
|
* | Check return result from Py_InitModule*(). This API can fail. | Neal Norwitz | 2006-01-19 | 1 | -0/+2 |
|
|
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -1/+1 |
|
|
* | Convert iterator __len__() methods to a private API. | Raymond Hettinger | 2005-09-24 | 1 | -8/+12 |
|
|
* | Disallow keyword arguments for type constructors that don't use them. | Georg Brandl | 2005-08-26 | 1 | -0/+36 |
|
|
* | Added optional None arguments to itertools.islice(). | Raymond Hettinger | 2004-12-05 | 1 | -14/+16 |
|
|
* | some platforms still need offsetof() from structmember.h | Fred Drake | 2004-10-17 | 1 | -0/+1 |
|
|
* | Fix and test weak referencing of itertools.tee objects. | Raymond Hettinger | 2004-10-17 | 1 | -1/+6 |
|
|
* | Replace structure member before decreffing. | Raymond Hettinger | 2004-10-02 | 1 | -1/+3 |
|
|
* | * Increase test coverage. | Raymond Hettinger | 2004-09-28 | 1 | -5/+9 |
|
|
* | SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes | Raymond Hettinger | 2004-09-01 | 1 | -2/+1 |
|
|
* | Exercise Jim's VISIT macro. | Raymond Hettinger | 2004-07-15 | 1 | -129/+24 |
|
|
* | SF #950057: itertools.chain doesn't "process" exceptions as they occur | Raymond Hettinger | 2004-05-08 | 1 | -0/+12 |
|
|
* | Change two instance of format strings for PyString_FromFormat() to use %ld | Brett Cannon | 2004-04-13 | 1 | -2/+2 |
|
|
* | Provide more information representations of repeat() and count(). | Raymond Hettinger | 2004-04-08 | 1 | -2/+27 |
|
|
* | Speedup the inner loops for dropwhile(), islice(), ifilter(), and | Raymond Hettinger | 2004-03-17 | 1 | -9/+17 |
|
|
* | need to initialize ob_type slot at run-time, at least on cygwin | Skip Montanaro | 2004-02-10 | 1 | -1/+2 |
|
|
* | Give itertools.repeat() a length method. | Raymond Hettinger | 2004-02-10 | 1 | -1/+14 |
|
|
* | Implement itertools.groupby() | Raymond Hettinger | 2003-12-06 | 1 | -1/+321 |
|
|
* | Improve the implementation of itertools.tee(). | Raymond Hettinger | 2003-11-12 | 1 | -181/+199 |
|
|
* | Fix nits in error messages. | Raymond Hettinger | 2003-10-28 | 1 | -4/+4 |
|
|
* | Minor improvements to itertools.tee(): | Raymond Hettinger | 2003-10-26 | 1 | -9/+9 |
|
|
* | Improvements to coding for itertools.tee(): | Raymond Hettinger | 2003-10-25 | 1 | -3/+26 |
|
|
* | Added itertools.tee() | Raymond Hettinger | 2003-10-24 | 1 | -0/+259 |
|
|
* | For safety, replace a tuple entry before decreffing it. | Raymond Hettinger | 2003-08-30 | 1 | -1/+3 |
|
|
* | SF bug #793826: using itertools.izip to mutate tuples | Raymond Hettinger | 2003-08-29 | 1 | -2/+4 |
|
|
* | Modified itertools.izip() to match the behavior of __builtin__.zip() | Raymond Hettinger | 2003-08-08 | 1 | -6/+2 |
|
|
* | SF patch #770521: make itertools type declarations static | Raymond Hettinger | 2003-07-14 | 1 | -24/+24 |
|
|
* | Minor updates: | Raymond Hettinger | 2003-06-18 | 1 | -3/+13 |
|
|
* | Add missing DECREF. | Raymond Hettinger | 2003-06-17 | 1 | -1/+3 |
|
|
* | PyType_GenericAlloc is inherited from object. | Raymond Hettinger | 2003-05-23 | 1 | -12/+12 |
|
|
* | Fixed dotted name assertion. | Raymond Hettinger | 2003-05-22 | 1 | -2/+2 |
|
|