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