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