aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_iter.py
Commit message (Expand)AuthorAge
* gh-93691: fix too broad source locations of for statement iterators (#120330)Irit Katriel2024-06-12
* gh-112087: Make __sizeof__ and listiter_{len, next} to be threadsafe (gh-114843)Donghee Na2024-02-15
* gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera...Raj2023-03-04
* gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when int...Ionite2023-02-24
* gh-94808: Coverage: Check picklablability of calliter (#95923)Michael Droettboom2022-10-03
* bpo-45229: Remove test_main in many tests (GH-28405)Serhiy Storchaka2021-09-19
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25189)Inada Naoki2021-04-06
* bpo-40275: Use new test.support helper submodules in tests (GH-21169)Hai Shi2020-06-30
* bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (G...Serhiy Storchaka2020-06-22
* bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)Serhiy Storchaka2019-08-04
* Anti-registration of various ABC methods.Guido van Rossum2016-08-18
* Issue #26492: Added additional tests for exhausted iterators of mutable seque...Serhiy Storchaka2016-03-30
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-30
* Issue #26015: Added new tests for pickling iterators of mutable sequences.Serhiy Storchaka2016-03-06
* Issue #23985: Fixed integer overflow in iterator object. Patch bySerhiy Storchaka2015-05-21
* Issue #22777: Test pickling with all protocols.Serhiy Storchaka2014-12-15
* #7782: merge with 3.3.Ezio Melotti2012-11-18
* Issue #14288: Serialization support for builtin iterators.Kristján Valur Jónsson2012-04-03
* Merged revisions 82167 via svnmerge fromBenjamin Peterson2010-06-22
* Merged revisions 82165 via svnmerge fromBenjamin Peterson2010-06-22
* use assert[Not]In where appropriateBenjamin Peterson2010-01-19
* convert old fail* assertions to assert*Benjamin Peterson2009-06-30
* 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