1. 226a012 bpo-42536: GC track recycled tuples (GH-23623) by Brandt Bucher · 4 years, 8 months ago
  2. cc061d0 bpo-38200: Add itertools.pairwise() (GH-23549) by Raymond Hettinger · 4 years, 8 months ago
  3. fc40b30 bpo-42450: Minor updates to the itertools recipes (GH-23555) by Raymond Hettinger · 4 years, 8 months ago
  4. 526a014 bpo-34410: Fix a crash in the tee iterator when re-enter it. (GH-15625) by Serhiy Storchaka · 6 years ago
  5. 6a650aa bpo-37976: Prevent shadowing of TypeError in zip() (GH-15592) by Sergey Fedoseev · 6 years ago
  6. 52a48e6 bpo-37707: Exclude expensive unit tests from PGO task (GH-15009) by Neil Schemenauer · 6 years ago
  7. 9718b59 bpo-34659: Adds initial kwarg to itertools.accumulate() (GH-9345) by Lisa Roach · 7 years ago
  8. 9265dd7 Add a prepend() recipe to teach a chain() idiom (GH-6415) by Raymond Hettinger · 7 years ago
  9. da1734c bpo-27212: Modify islice recipe to consume initial values preceding start (GH-6195) by Cheryl Sabella · 7 years ago
  10. d37258d Add itertools recipe for directly finding the n-th combination (#5161) by Raymond Hettinger · 8 years ago
  11. c740e4f bpo-30347: Stop crashes when concurrently iterate over itertools.groupby() iterators. (#1557) by Serhiy Storchaka · 8 years ago
  12. c247caf bpo-30346: An iterator produced by the itertools.groupby() iterator (#1569) by Serhiy Storchaka · 8 years ago
  13. 0ecdc52 bpo-30537: use PyNumber in itertools.islice instead of PyLong (#1918) by Will Roberts · 8 years ago
  14. 5eb788b bpo-30534: Fixed error messages when pass keyword arguments (#1901) by Serhiy Storchaka · 8 years ago
  15. 5466d4a bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. (#889) by T. Wouters · 8 years ago
  16. 8f0f205 Issue #28322: Fixed possible crashes when unpickle itertools objects from by Serhiy Storchaka · 9 years ago
  17. 85c3f26 Issue #28322: Fixed possible crashes when unpickle itertools objects from by Serhiy Storchaka · 9 years ago
  18. 8f9cafa Issue #28019: itertools.count() no longer rounds non-integer step in range by Serhiy Storchaka · 9 years ago
  19. 8ddcf3a Issue #28019: itertools.count() no longer rounds non-integer step in range by Serhiy Storchaka · 9 years ago
  20. f157982 Issue #27076: More doc and comment spelling fixes for 3.6, by Ville Skyttä by Martin Panter · 9 years ago
  21. c7f44aa Issue #23277: Remove more unused sys and os imports. by Serhiy Storchaka · 9 years ago
  22. 20b3e72 Merge by Raymond Hettinger · 9 years ago
  23. e525ee3 Document another recipe for itertools: all_equal(). Inspired by David Beazley. by Raymond Hettinger · 9 years ago
  24. 5608411 Issue #25718: Fixed pickling and copying the accumulate() iterator with total is None. by Serhiy Storchaka · 9 years ago
  25. d551625 Issue #25718: Fixed pickling and copying the accumulate() iterator with total is None. by Serhiy Storchaka · 9 years ago
  26. a8a930f Issue #25021: Merge 3.5 to default by Kristján Valur Jónsson · 10 years ago
  27. d7f65e5 Issue #25021: Merge 3.4 to 3.5 by Kristján Valur Jónsson · 10 years ago
  28. 95c3e6c Issue #25021: Merge from 3.3 to 3.4 by Kristján Valur Jónsson · 10 years ago
  29. 102764a Issue #25021: Correctly make sure that product.__setstate__ does not access by Kristján Valur Jónsson · 10 years ago
  30. 1cadf76 Improve comment by Raymond Hettinger · 10 years ago
  31. a166ce5 Add more tests for pickling itertools.cycle by Raymond Hettinger · 10 years ago
  32. 79c878d Fix crash in itertools.cycle.__setstate__() caused by lack of type checking. by Raymond Hettinger · 10 years ago
  33. 1770fde Make some tests more frienly to MemoryError. by Serhiy Storchaka · 10 years ago
  34. 9db5500 Make some tests more frienly to MemoryError. by Serhiy Storchaka · 10 years ago
  35. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  36. c2ccce7 Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 10 years ago
  37. 7a27c97 Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 11 years ago
  38. b5e8e57 Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 11 years ago
  39. dee948b Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 11 years ago
  40. 5d0bb85 merge 3.4 (#23364, #23363) by Benjamin Peterson · 11 years ago
  41. c468b53 merge 3.3 (#23364, #23363) by Benjamin Peterson · 11 years ago
  42. 0eaabf1 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 11 years ago
  43. 38d9772 merge 3.4 (#23365) by Benjamin Peterson · 11 years ago
  44. f635dc3 merge 3.3 (#23365) by Benjamin Peterson · 11 years ago
  45. 6f08229 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 11 years ago
  46. 4db56d5 merge 3.4 (#23366) by Benjamin Peterson · 11 years ago
  47. 819c4e9 merge 3.3 (#23366) by Benjamin Peterson · 11 years ago
  48. 4b40eeb detect overflow in combinations (closes #23366) by Benjamin Peterson · 11 years ago
  49. 65ee467 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 11 years ago
  50. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 11 years ago
  51. bb6c0aa PEP 479: Use the return-keyword instead of raising StopIteration inside a generators. by Raymond Hettinger · 11 years ago
  52. 8e16351 allow test to work on implementations not using ref-counting (closes #22265) by Benjamin Peterson · 11 years ago
  53. 97d3555 Issue #19145: Fix handling of negative values for a "times" keyword argument to itertools.repeat()> by Raymond Hettinger · 11 years ago
  54. 26f82ef Issue #21321: itertools.islice() now releases the reference to the source iterator when the slice is exhausted. by Antoine Pitrou · 11 years ago
  55. dca807b Issue #21346: Fix typo, make message consistent in test_itertools. by Zachary Ware · 11 years ago
  56. 31b26f6 Issue #18652: Add an itertools recipe for first_true() by Raymond Hettinger · 11 years ago
  57. 2dae92a Issue #15475: Add __sizeof__ implementations for itertools objects. by Serhiy Storchaka · 12 years ago
  58. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 12 years ago
  59. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 12 years ago
  60. ee57f15 Revert a premature patch for issue #14010 (changeset 846bd418aee5). by Serhiy Storchaka · 12 years ago
  61. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 12 years ago
  62. aac81e2 Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 12 years ago
  63. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 12 years ago
  64. dd399af Optimize the test for issue #13454. by Serhiy Storchaka · 13 years ago
  65. 1c7181d Optimize the test for issue #13454. by Serhiy Storchaka · 13 years ago
  66. 5bb893c Optimize the test for issue #13454. by Serhiy Storchaka · 13 years ago
  67. c5dadcf Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() by Serhiy Storchaka · 13 years ago
  68. 339e91d Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() by Serhiy Storchaka · 13 years ago
  69. a3e9128 Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() by Serhiy Storchaka · 13 years ago
  70. aa9a79d Issue #16148: implemented PEP 424 by Armin Ronacher · 13 years ago
  71. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 13 years ago
  72. e151d21 Mark itertools tests of tuple reuse as being specific to CPython. by Alex Gaynor · 14 years ago
  73. 978da33 Merge 3.2 by Kristjan Valur Jonsson · 14 years ago
  74. fa3edbe Merge 3.1 by Kristjan Valur Jonsson · 14 years ago
  75. 35722a9 Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle. by Kristjan Valur Jonsson · 14 years ago
  76. 5d44613 Add optional *func* argument to itertools.accumulate(). by Raymond Hettinger · 14 years ago
  77. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 14 years ago
  78. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
  79. 2d93e6e Update the itertools.accumulate() docs. by Raymond Hettinger · 15 years ago
  80. d8ff465 Simplify the signature for itertools.accumulate() to match numpy. Handle one item iterable the same way as min()/max(). by Raymond Hettinger · 15 years ago
  81. 482ba77 Add itertools.accumulate(). by Raymond Hettinger · 15 years ago
  82. 101f09e Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 15 years ago
  83. 69b34bf Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 15 years ago
  84. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 15 years ago
  85. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 15 years ago
  86. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  87. a3e1ad2 Issue 7410: deepcopy of itertools.count() reset the count. by Raymond Hettinger · 16 years ago
  88. 6c8ee7a Issue #7410: deepcopy of itertools.count was resetting the count. by Raymond Hettinger · 16 years ago
  89. a9311a3 Fix exception handling in itertools.izip_longest(). by Raymond Hettinger · 16 years ago
  90. fc43851 Fix exception handling in itertools.izip_longest(). by Raymond Hettinger · 16 years ago
  91. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 16 years ago
  92. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 16 years ago
  93. eb13fdd Port r69837: Fix keyword arguments for itertools.count(). Step arg without a start arg was ignored. by Raymond Hettinger · 16 years ago
  94. cdf8ba3 Add some cross-references to the docs. Simplify the python code equivalent for zip(). Supply an optional argument for the nth() recipe. by Raymond Hettinger · 16 years ago
  95. f4bb7f2 Add keyword arg support to itertools.repeat(). by Raymond Hettinger · 16 years ago
  96. 15a4950 Add keyword arg support to itertools.compress(). by Raymond Hettinger · 16 years ago
  97. d6280f4 Add GC support to count() objects. by Raymond Hettinger · 16 years ago
  98. 9e8dbbc Add keyword argument support to itertools.count(). by Raymond Hettinger · 16 years ago
  99. de09acf One more test. by Raymond Hettinger · 16 years ago
  100. 8a882a7 Add an extra testcase. by Raymond Hettinger · 16 years ago