summaryrefslogtreecommitdiffstats
path: root/Modules/itertoolsmodule.c
Commit message (Expand)AuthorAgeFilesLines
* #2536: fix itertools.permutations and itertools.combinations docstrings.Georg Brandl2008-06-101-3/+3
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-6/+6
* Renamed PyString to PyBytesChristian Heimes2008-05-261-6/+6
* Remove itertools warnings I had added before the 2-to-3 handled the migration.Raymond Hettinger2008-03-191-25/+0
* The filter() function does support a None argument in Py3.0.Raymond Hettinger2008-03-191-9/+0
* Added zip, map, filter to future_bultins (#2171)David Wolever2008-03-191-2/+11
* Consistent tense.Raymond Hettinger2008-03-131-1/+1
* Add 2-to-3 support for the itertools moved to builtins or renamed.Raymond Hettinger2008-03-131-0/+25
* Issue 2246: itertools grouper object did not participate in GC (should be ba...Raymond Hettinger2008-03-061-5/+15
* Small code cleanup.Raymond Hettinger2008-03-051-4/+2
* C implementation of itertools.permutations().Raymond Hettinger2008-03-051-0/+274
* Fix refleak in chain().Raymond Hettinger2008-03-041-1/+1
* Beef-up docs and tests for itertools. Fix-up end-case for product().Raymond Hettinger2008-03-041-4/+1
* Handle 0-tuples which can be singletons.Raymond Hettinger2008-03-021-1/+1
* Simplify code for itertools.product().Raymond Hettinger2008-03-021-13/+2
* Handle the repeat keyword argument for itertools.product().Raymond Hettinger2008-02-291-5/+27
* Add alternate constructor for itertools.chain().Raymond Hettinger2008-02-281-1/+25
* Have itertools.chain() consume its inputs lazily instead of building a tuple ...Raymond Hettinger2008-02-281-51/+51
* The empty tuple is usually a singleton with a much higher refcnt than 1Christian Heimes2008-02-281-2/+5
* One too many decrefs.Raymond Hettinger2008-02-271-3/+1
* Add itertools.combinations().Raymond Hettinger2008-02-261-1/+225
* Coerced PyBool_Type to be able to compare it.Facundo Batista2008-02-251-2/+2
* Make sure the itertools filter functions give the same performance for func=b...Raymond Hettinger2008-02-251-2/+2
* Add more commentsRaymond Hettinger2008-02-231-4/+4
* Improve the implementation of itertools.product()Raymond Hettinger2008-02-231-12/+43
* First draft for itertools.product(). Docs and other updates forthcoming.Raymond Hettinger2008-02-221-1/+212
* Make starmap() match its pure python definition and accept any itertable inpu...Raymond Hettinger2008-01-171-3/+4
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-26/+26
* itertools.count() no longer limited to sys.maxint.Raymond Hettinger2007-10-041-9/+70
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-60/+43
* Fix problems in x64 build that were discovered by the testsuite:Kristján Valur Jónsson2007-05-031-2/+2
* Remove filler struct item and fix leak.Raymond Hettinger2007-02-211-44/+40
* Add itertools.izip_longest().Raymond Hettinger2007-02-211-0/+234
* Do not let overflows in enumerate() and count() pass silently.Raymond Hettinger2007-02-081-0/+5
* Bug #1486663: don't reject keyword arguments for subclasses of builtinGeorg Brandl2007-01-211-12/+13
* * regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_tJack Diederich2006-09-211-1/+1
* Bug #1550714: fix SystemError from itertools.tee on negative value for n.Neal Norwitz2006-09-021-2/+6
* nextlink can be NULL if teedataobject_new fails, so use XINCREF.Neal Norwitz2006-07-231-2/+8
* Fix compiler warning (and whitespace) on Mac OS 10.4. (A lot of this code lo...Neal Norwitz2006-05-271-4/+4
* use Py_ssize_t in places that may need itJack Diederich2006-05-261-25/+25
* Add missing PyObject_GC_Track call, causing *some* itertools.tee objects toThomas Wouters2006-04-151-0/+1
* Make itertools.tee and its internal teedataobject participate in GC. ThisThomas Wouters2006-03-271-19/+71
* More unconsting.Martin v. Löwis2006-02-271-1/+1
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-8/+8
* Renamed _length_cue() to __length_hint__(). See:Armin Rigo2006-02-111-2/+2
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* Convert iterator __len__() methods to a private API.Raymond Hettinger2005-09-241-8/+12
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-261-0/+36
* Added optional None arguments to itertools.islice().Raymond Hettinger2004-12-051-14/+16