- fb78692 bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25189) by Inada Naoki · 4 years, 4 months ago
- 0c4f0f3 bpo-40275: Use new test.support helper submodules in tests (GH-21169) by Hai Shi · 5 years ago
- cafe1b6 bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (GH-20537) by Serhiy Storchaka · 5 years ago
- 18b711c bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904) by Serhiy Storchaka · 6 years ago
- 97c1adf Anti-registration of various ABC methods. by Guido van Rossum · 9 years ago
- 8dc2ec1 Issue #26492: Added additional tests for exhausted iterators of mutable sequences. by Serhiy Storchaka · 9 years ago
- fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 9 years ago
- aabafe7 Issue #26015: Added new tests for pickling iterators of mutable sequences. by Serhiy Storchaka · 9 years ago
- 4faf5c5 Issue #23985: Fixed integer overflow in iterator object. Patch by by Serhiy Storchaka · 10 years ago
- bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 11 years ago
- 739e179 #7782: merge with 3.3. by Ezio Melotti · 13 years ago
- 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 13 years ago
- 945c579 Merged revisions 82167 via svnmerge from by Benjamin Peterson · 15 years ago
- 1fa17e6 Merged revisions 82165 via svnmerge from by Benjamin Peterson · 15 years ago
- 577473f use assert[Not]In where appropriate by Benjamin Peterson · 16 years ago
- c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 16 years ago
- f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 17 years ago
- ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 17 years ago
- 1dfde1d Replace map(None, *iterables) with zip(*iterables). by Raymond Hettinger · 18 years ago
- 3add4d7 Raise statement normalization in Lib/test/. by Collin Winter · 18 years ago
- c1f779c Merged revisions 56125-56153 via svnmerge from by Guido van Rossum · 18 years ago
- 5de48bd Simplify various spots where: str() is called on something by Walter Dörwald · 18 years ago
- 1f5947b Remove have_unicode checks and merge those tests into the by Walter Dörwald · 18 years ago
- 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 18 years ago
- ef87d6e Rip out all the u"..." literals and calls to unicode(). by Guido van Rossum · 18 years ago
- a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 18 years ago
- 0caf6d8 Fix test_iter after the dict views conversion. by Brett Cannon · 18 years ago
- cc2b016 - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; by Guido van Rossum · 18 years ago
- 4dafcc4 - patch #1600346 submitted by Tomer Filiba by Jack Diederich · 19 years ago
- 801f0d7 Make built-in zip() equal to itertools.izip(). by Guido van Rossum · 19 years ago
- 01c77c6 Anna Ravenscroft identified many occurrences of "file" used to open a file by Alex Martelli · 19 years ago
- 89da5d7 Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M. by Guido van Rossum · 19 years ago
- eaef615 As discussed on python-dev, changed builtin.zip() to handle zero arguments by Raymond Hettinger · 22 years ago
- cae330e Don't rebind True and False. by Tim Peters · 23 years ago
- 8ee5243 Mark xreadlines deprecated. Don't use f.xreadlines() in test_iter.py. by Guido van Rossum · 23 years ago
- 04f357c Get rid of relative imports in all unittests. Now anything that by Barry Warsaw · 23 years ago
- 674eae6 Bunch of tests to make sure that StopIteration is a sink state. by Guido van Rossum · 23 years ago
- 67d687a builtin_zip(): Take a good guess at how big the result list will be, by Tim Peters · 23 years ago
- bb8f59a unpack_iterable(): Add a missing DECREF in an error case. Reported by by Guido van Rossum · 24 years ago
- 527e64f Whitespace normalization. by Tim Peters · 24 years ago
- 2c9aa5e Generalize file.writelines() to allow iterable objects. by Tim Peters · 24 years ago
- 2e2be37 Change the PyUnit-based tests to use the test_main() approach. This by Fred Drake · 24 years ago
- 16a77ad Generalize operator.indexOf (PySequence_Index) to work with any by Tim Peters · 24 years ago
- 339d0f7 Patch #445762: Support --disable-unicode by Martin v. Löwis · 24 years ago
- d6d010b Teach the UNPACK_SEQUENCE opcode how to tease an iterable object into by Tim Peters · 24 years ago
- 8572b4f Generalize zip() to work with iterators. by Tim Peters · 24 years ago
- ef0c42d Get rid of silly 5am "del" stmts. by Tim Peters · 24 years ago
- cb8d368 Reimplement PySequence_Contains() and instance_contains(), so they work by Tim Peters · 24 years ago
- 75f8e35 Generalize PySequence_Count() (operator.countOf) to work with iterators. by Tim Peters · 24 years ago
- de9725f Make 'x in y' and 'x not in y' (PySequence_Contains) play nice w/ iterators. by Tim Peters · 24 years ago
- 2cfe368 Make unicode.join() work nice with iterators. This also required a change by Tim Peters · 24 years ago
- 6912d4d Generalize tuple() to work nicely with iterators. by Tim Peters · 24 years ago
- 15d81ef Generalize reduce() to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 24 years ago
- 8bc10b0 Purge redundant cut&paste line. by Tim Peters · 24 years ago
- 4e9afdc Generalize map() to work with iterators. by Tim Peters · 24 years ago
- efdae39 Remove redundant copy+paste code. by Tim Peters · 24 years ago
- c307453 Generalize max(seq) and min(seq) to work with iterators. NEEDS DOC CHANGES. by Tim Peters · 24 years ago
- 0e57abf Generalize filter(f, seq) to work with iterators. This also generalizes by Tim Peters · 24 years ago
- f553f89 Generalize list(seq) to work with iterators. This also generalizes list() by Tim Peters · 24 years ago
- 8b48cf9 Add test suite for iterators. by Guido van Rossum · 24 years ago