index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
itertoolsmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
#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
*
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
*
Added zip, map, filter to future_bultins (#2171)
David Wolever
2008-03-19
1
-2/+11
*
Consistent tense.
Raymond Hettinger
2008-03-13
1
-1/+1
*
Add 2-to-3 support for the itertools moved to builtins or renamed.
Raymond Hettinger
2008-03-13
1
-0/+25
*
Issue 2246: itertools grouper object did not participate in GC (should be ba...
Raymond Hettinger
2008-03-06
1
-5/+15
*
Small code cleanup.
Raymond Hettinger
2008-03-05
1
-4/+2
*
C implementation of itertools.permutations().
Raymond Hettinger
2008-03-05
1
-0/+274
*
Fix refleak in chain().
Raymond Hettinger
2008-03-04
1
-1/+1
*
Beef-up docs and tests for itertools. Fix-up end-case for product().
Raymond Hettinger
2008-03-04
1
-4/+1
*
Handle 0-tuples which can be singletons.
Raymond Hettinger
2008-03-02
1
-1/+1
*
Simplify code for itertools.product().
Raymond Hettinger
2008-03-02
1
-13/+2
*
Handle the repeat keyword argument for itertools.product().
Raymond Hettinger
2008-02-29
1
-5/+27
*
Add alternate constructor for itertools.chain().
Raymond Hettinger
2008-02-28
1
-1/+25
*
Have itertools.chain() consume its inputs lazily instead of building a tuple ...
Raymond Hettinger
2008-02-28
1
-51/+51
*
The empty tuple is usually a singleton with a much higher refcnt than 1
Christian Heimes
2008-02-28
1
-2/+5
*
One too many decrefs.
Raymond Hettinger
2008-02-27
1
-3/+1
*
Add itertools.combinations().
Raymond Hettinger
2008-02-26
1
-1/+225
*
Coerced PyBool_Type to be able to compare it.
Facundo Batista
2008-02-25
1
-2/+2
*
Make sure the itertools filter functions give the same performance for func=b...
Raymond Hettinger
2008-02-25
1
-2/+2
*
Add more comments
Raymond Hettinger
2008-02-23
1
-4/+4
*
Improve the implementation of itertools.product()
Raymond Hettinger
2008-02-23
1
-12/+43
*
First draft for itertools.product(). Docs and other updates forthcoming.
Raymond Hettinger
2008-02-22
1
-1/+212
*
Make starmap() match its pure python definition and accept any itertable inpu...
Raymond Hettinger
2008-01-17
1
-3/+4
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...
Christian Heimes
2007-12-19
1
-26/+26
*
itertools.count() no longer limited to sys.maxint.
Raymond Hettinger
2007-10-04
1
-9/+70
*
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Martin v. Löwis
2007-07-21
1
-60/+43
*
Fix problems in x64 build that were discovered by the testsuite:
Kristján Valur Jónsson
2007-05-03
1
-2/+2
*
Remove filler struct item and fix leak.
Raymond Hettinger
2007-02-21
1
-44/+40
*
Add itertools.izip_longest().
Raymond Hettinger
2007-02-21
1
-0/+234
*
Do not let overflows in enumerate() and count() pass silently.
Raymond Hettinger
2007-02-08
1
-0/+5
*
Bug #1486663: don't reject keyword arguments for subclasses of builtin
Georg Brandl
2007-01-21
1
-12/+13
*
* regression bug, count_next was coercing a Py_ssize_t to an unsigned Py_size_t
Jack Diederich
2006-09-21
1
-1/+1
*
Bug #1550714: fix SystemError from itertools.tee on negative value for n.
Neal Norwitz
2006-09-02
1
-2/+6
*
nextlink can be NULL if teedataobject_new fails, so use XINCREF.
Neal Norwitz
2006-07-23
1
-2/+8
*
Fix compiler warning (and whitespace) on Mac OS 10.4. (A lot of this code lo...
Neal Norwitz
2006-05-27
1
-4/+4
*
use Py_ssize_t in places that may need it
Jack Diederich
2006-05-26
1
-25/+25
*
Add missing PyObject_GC_Track call, causing *some* itertools.tee objects to
Thomas Wouters
2006-04-15
1
-0/+1
*
Make itertools.tee and its internal teedataobject participate in GC. This
Thomas Wouters
2006-03-27
1
-19/+71
*
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
[next]