aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_iter.py
Commit message (Expand)AuthorAge
* Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-13
* Merged revisions 68560 via svnmerge fromAmaury Forgeot d'Arc2009-01-12
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-20
* Replace map(None, *iterables) with zip(*iterables).Raymond Hettinger2008-01-22
* Raise statement normalization in Lib/test/.Collin Winter2007-08-29
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-03
* Simplify various spots where: str() is called on somethingWalter Dörwald2007-06-11
* Remove have_unicode checks and merge those tests into theWalter Dörwald2007-05-22
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-07
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-02
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-21
* Fix test_iter after the dict views conversion.Brett Cannon2007-02-22
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-11
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-28
* Make built-in zip() equal to itertools.izip().Guido van Rossum2006-08-24
* Anna Ravenscroft identified many occurrences of "file" used to open a fileAlex Martelli2006-08-24
* Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M.Guido van Rossum2006-08-22
* As discussed on python-dev, changed builtin.zip() to handle zero argumentsRaymond Hettinger2003-08-02
* Don't rebind True and False.Tim Peters2002-12-23
* Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py.Guido van Rossum2002-08-06
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-23
* Bunch of tests to make sure that StopIteration is a sink state.Guido van Rossum2002-07-16
* builtin_zip(): Take a good guess at how big the result list will be,Tim Peters2002-04-29
* unpack_iterable(): Add a missing DECREF in an error case. Reported byGuido van Rossum2001-12-03
* Whitespace normalization.Tim Peters2001-10-04
* Generalize file.writelines() to allow iterable objects.Tim Peters2001-09-23
* Change the PyUnit-based tests to use the test_main() approach. ThisFred Drake2001-09-20
* Generalize operator.indexOf (PySequence_Index) to work with anyTim Peters2001-09-08
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-17
* Teach the UNPACK_SEQUENCE opcode how to tease an iterable object intoTim Peters2001-06-21
* Generalize zip() to work with iterators.Tim Peters2001-05-06
* Get rid of silly 5am "del" stmts.Tim Peters2001-05-05
* Reimplement PySequence_Contains() and instance_contains(), so they workTim Peters2001-05-05
* Generalize PySequence_Count() (operator.countOf) to work with iterators.Tim Peters2001-05-05
* Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators.Tim Peters2001-05-05
* Make unicode.join() work nice with iterators. This also required a changeTim Peters2001-05-05
* Generalize tuple() to work nicely with iterators.Tim Peters2001-05-05
* Generalize reduce() to work with iterators.Tim Peters2001-05-04
* Purge redundant cut&paste line.Tim Peters2001-05-03
* Generalize map() to work with iterators.Tim Peters2001-05-03
* Remove redundant copy+paste code.Tim Peters2001-05-03
* Generalize max(seq) and min(seq) to work with iterators.Tim Peters2001-05-03
* Generalize filter(f, seq) to work with iterators. This also generalizesTim Peters2001-05-02
* Generalize list(seq) to work with iterators. This also generalizes list()Tim Peters2001-05-01
* Add test suite for iterators.Guido van Rossum2001-04-21