summaryrefslogtreecommitdiff
path: root/Lib/test/test_iter.py
Commit message (Expand)AuthorAgeFilesLines
* Anti-registration of various ABC methods.Guido van Rossum2016-08-181-0/+12
* Issue #26492: Added additional tests for exhausted iterators of mutable seque...Serhiy Storchaka2016-03-301-0/+11
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-0/+4
* Issue #26015: Added new tests for pickling iterators of mutable sequences.Serhiy Storchaka2016-03-061-0/+36
* Issue #23985: Fixed integer overflow in iterator object. Patch bySerhiy Storchaka2015-05-211-0/+25
* Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-151-16/+17
* #7782: merge with 3.3.Ezio Melotti2012-11-181-0/+15
* Issue #14288: Serialization support for builtin iterators.Kristján Valur Jónsson2012-04-031-8/+35
* Merged revisions 82167 via svnmerge fromBenjamin Peterson2010-06-221-4/+3
* Merged revisions 82165 via svnmerge fromBenjamin Peterson2010-06-221-1/+3
* use assert[Not]In where appropriateBenjamin Peterson2010-01-191-10/+10
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-11/+11
* Merged revisions 68560 via svnmerge fromAmaury Forgeot d'Arc2009-01-121-0/+22
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-1/+1
* Replace map(None, *iterables) with zip(*iterables).Raymond Hettinger2008-01-221-8/+0
* Raise statement normalization in Lib/test/.Collin Winter2007-08-291-1/+1
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-16/+21
* Simplify various spots where: str() is called on somethingWalter Dörwald2007-06-111-1/+1
* Remove have_unicode checks and merge those tests into theWalter Dörwald2007-05-221-12/+2
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-33/+32
* Rip out all the u"..." literals and calls to unicode().Guido van Rossum2007-05-021-5/+5
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-7/+7
* Fix test_iter after the dict views conversion.Brett Cannon2007-02-221-7/+7
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-14/+14
* - patch #1600346 submitted by Tomer FilibaJack Diederich2006-11-281-3/+3
* Make built-in zip() equal to itertools.izip().Guido van Rossum2006-08-241-13/+16
* Anna Ravenscroft identified many occurrences of "file" used to open a fileAlex Martelli2006-08-241-2/+2
* Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M.Guido van Rossum2006-08-221-13/+0
* As discussed on python-dev, changed builtin.zip() to handle zero argumentsRaymond Hettinger2003-08-021-1/+4
* Don't rebind True and False.Tim Peters2002-12-231-5/+5
* Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py.Guido van Rossum2002-08-061-2/+2
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
* Bunch of tests to make sure that StopIteration is a sink state.Guido van Rossum2002-07-161-0/+76
* builtin_zip(): Take a good guess at how big the result list will be,Tim Peters2002-04-291-0/+28
* unpack_iterable(): Add a missing DECREF in an error case. Reported byGuido van Rossum2001-12-031-0/+23
* Whitespace normalization.Tim Peters2001-10-041-4/+4
* Generalize file.writelines() to allow iterable objects.Tim Peters2001-09-231-0/+53
* Change the PyUnit-based tests to use the test_main() approach. ThisFred Drake2001-09-201-1/+7
* Generalize operator.indexOf (PySequence_Index) to work with anyTim Peters2001-09-081-0/+41
* Patch #445762: Support --disable-unicodeMartin v. Löwis2001-08-171-5/+11
* Teach the UNPACK_SEQUENCE opcode how to tease an iterable object intoTim Peters2001-06-211-0/+53
* Generalize zip() to work with iterators.Tim Peters2001-05-061-0/+46
* Get rid of silly 5am "del" stmts.Tim Peters2001-05-051-2/+0
* Reimplement PySequence_Contains() and instance_contains(), so they workTim Peters2001-05-051-18/+6
* Generalize PySequence_Count() (operator.countOf) to work with iterators.Tim Peters2001-05-051-0/+35
* Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators.Tim Peters2001-05-051-0/+55
* Make unicode.join() work nice with iterators. This also required a changeTim Peters2001-05-051-0/+41
* Generalize tuple() to work nicely with iterators.Tim Peters2001-05-051-0/+33
* Generalize reduce() to work with iterators.Tim Peters2001-05-041-0/+13
* Purge redundant cut&paste line.Tim Peters2001-05-031-2/+1