index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_iter.py
Commit message (
Expand
)
Author
Age
*
Merged revisions 73715 via svnmerge from
Georg Brandl
2009-08-13
*
Merged revisions 68560 via svnmerge from
Amaury Forgeot d'Arc
2009-01-12
*
#2621 rename test.test_support to test.support
Benjamin Peterson
2008-05-20
*
Replace map(None, *iterables) with zip(*iterables).
Raymond Hettinger
2008-01-22
*
Raise statement normalization in Lib/test/.
Collin Winter
2007-08-29
*
Merged revisions 56125-56153 via svnmerge from
Guido van Rossum
2007-07-03
*
Simplify various spots where: str() is called on something
Walter Dörwald
2007-06-11
*
Remove have_unicode checks and merge those tests into the
Walter Dörwald
2007-05-22
*
Merged revisions 55007-55179 via svnmerge from
Guido van Rossum
2007-05-07
*
Rip out all the u"..." literals and calls to unicode().
Guido van Rossum
2007-05-02
*
PEP 3114: rename .next() to .__next__() and add next() builtin.
Georg Brandl
2007-04-21
*
Fix test_iter after the dict views conversion.
Brett Cannon
2007-02-22
*
- PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;
Guido van Rossum
2007-02-11
*
- patch #1600346 submitted by Tomer Filiba
Jack Diederich
2006-11-28
*
Make built-in zip() equal to itertools.izip().
Guido van Rossum
2006-08-24
*
Anna Ravenscroft identified many occurrences of "file" used to open a file
Alex Martelli
2006-08-24
*
Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M.
Guido van Rossum
2006-08-22
*
As discussed on python-dev, changed builtin.zip() to handle zero arguments
Raymond Hettinger
2003-08-02
*
Don't rebind True and False.
Tim Peters
2002-12-23
*
Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py.
Guido van Rossum
2002-08-06
*
Get rid of relative imports in all unittests. Now anything that
Barry Warsaw
2002-07-23
*
Bunch of tests to make sure that StopIteration is a sink state.
Guido van Rossum
2002-07-16
*
builtin_zip(): Take a good guess at how big the result list will be,
Tim Peters
2002-04-29
*
unpack_iterable(): Add a missing DECREF in an error case. Reported by
Guido van Rossum
2001-12-03
*
Whitespace normalization.
Tim Peters
2001-10-04
*
Generalize file.writelines() to allow iterable objects.
Tim Peters
2001-09-23
*
Change the PyUnit-based tests to use the test_main() approach. This
Fred Drake
2001-09-20
*
Generalize operator.indexOf (PySequence_Index) to work with any
Tim Peters
2001-09-08
*
Patch #445762: Support --disable-unicode
Martin v. Löwis
2001-08-17
*
Teach the UNPACK_SEQUENCE opcode how to tease an iterable object into
Tim Peters
2001-06-21
*
Generalize zip() to work with iterators.
Tim Peters
2001-05-06
*
Get rid of silly 5am "del" stmts.
Tim Peters
2001-05-05
*
Reimplement PySequence_Contains() and instance_contains(), so they work
Tim Peters
2001-05-05
*
Generalize PySequence_Count() (operator.countOf) to work with iterators.
Tim Peters
2001-05-05
*
Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators.
Tim Peters
2001-05-05
*
Make unicode.join() work nice with iterators. This also required a change
Tim Peters
2001-05-05
*
Generalize tuple() to work nicely with iterators.
Tim Peters
2001-05-05
*
Generalize reduce() to work with iterators.
Tim Peters
2001-05-04
*
Purge redundant cut&paste line.
Tim Peters
2001-05-03
*
Generalize map() to work with iterators.
Tim Peters
2001-05-03
*
Remove redundant copy+paste code.
Tim Peters
2001-05-03
*
Generalize max(seq) and min(seq) to work with iterators.
Tim Peters
2001-05-03
*
Generalize filter(f, seq) to work with iterators. This also generalizes
Tim Peters
2001-05-02
*
Generalize list(seq) to work with iterators. This also generalizes list()
Tim Peters
2001-05-01
*
Add test suite for iterators.
Guido van Rossum
2001-04-21