1. e525ee3 Document another recipe for itertools: all_equal(). Inspired by David Beazley. by Raymond Hettinger · 8 years ago
  2. d551625 Issue #25718: Fixed pickling and copying the accumulate() iterator with total is None. by Serhiy Storchaka · 8 years ago
  3. d7f65e5 Issue #25021: Merge 3.4 to 3.5 by Kristján Valur Jónsson · 9 years ago
  4. 95c3e6c Issue #25021: Merge from 3.3 to 3.4 by Kristján Valur Jónsson · 9 years ago
  5. 102764a Issue #25021: Correctly make sure that product.__setstate__ does not access by Kristján Valur Jónsson · 9 years ago
  6. 1770fde Make some tests more frienly to MemoryError. by Serhiy Storchaka · 9 years ago
  7. 9db5500 Make some tests more frienly to MemoryError. by Serhiy Storchaka · 9 years ago
  8. a60c2fe Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 9 years ago
  9. c2ccce7 Issue #23641: Cleaned out legacy dunder names from tests and docs. by Serhiy Storchaka · 9 years ago
  10. 7a27c97 Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  11. b5e8e57 Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  12. dee948b Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  13. 5d0bb85 merge 3.4 (#23364, #23363) by Benjamin Peterson · 10 years ago
  14. c468b53 merge 3.3 (#23364, #23363) by Benjamin Peterson · 10 years ago
  15. 0eaabf1 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 10 years ago
  16. 38d9772 merge 3.4 (#23365) by Benjamin Peterson · 10 years ago
  17. f635dc3 merge 3.3 (#23365) by Benjamin Peterson · 10 years ago
  18. 6f08229 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 10 years ago
  19. 4db56d5 merge 3.4 (#23366) by Benjamin Peterson · 10 years ago
  20. 819c4e9 merge 3.3 (#23366) by Benjamin Peterson · 10 years ago
  21. 4b40eeb detect overflow in combinations (closes #23366) by Benjamin Peterson · 10 years ago
  22. 65ee467 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  23. bad1257 Issue #22777: Test pickling with all protocols. by Serhiy Storchaka · 10 years ago
  24. bb6c0aa PEP 479: Use the return-keyword instead of raising StopIteration inside a generators. by Raymond Hettinger · 10 years ago
  25. 8e16351 allow test to work on implementations not using ref-counting (closes #22265) by Benjamin Peterson · 10 years ago
  26. 97d3555 Issue #19145: Fix handling of negative values for a "times" keyword argument to itertools.repeat()> by Raymond Hettinger · 10 years ago
  27. 26f82ef Issue #21321: itertools.islice() now releases the reference to the source iterator when the slice is exhausted. by Antoine Pitrou · 10 years ago
  28. dca807b Issue #21346: Fix typo, make message consistent in test_itertools. by Zachary Ware · 10 years ago
  29. 31b26f6 Issue #18652: Add an itertools recipe for first_true() by Raymond Hettinger · 10 years ago
  30. 2dae92a Issue #15475: Add __sizeof__ implementations for itertools objects. by Serhiy Storchaka · 11 years ago
  31. 46e1ce2 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  32. 9594942 Issue #18783: Removed existing mentions of Python long type in docstrings, by Serhiy Storchaka · 11 years ago
  33. ee57f15 Revert a premature patch for issue #14010 (changeset 846bd418aee5). by Serhiy Storchaka · 11 years ago
  34. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  35. aac81e2 Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  36. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  37. dd399af Optimize the test for issue #13454. by Serhiy Storchaka · 12 years ago
  38. 1c7181d Optimize the test for issue #13454. by Serhiy Storchaka · 12 years ago
  39. 5bb893c Optimize the test for issue #13454. by Serhiy Storchaka · 12 years ago
  40. c5dadcf Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() by Serhiy Storchaka · 12 years ago
  41. 339e91d Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() by Serhiy Storchaka · 12 years ago
  42. a3e9128 Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() by Serhiy Storchaka · 12 years ago
  43. aa9a79d Issue #16148: implemented PEP 424 by Armin Ronacher · 12 years ago
  44. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  45. e151d21 Mark itertools tests of tuple reuse as being specific to CPython. by Alex Gaynor · 13 years ago
  46. 978da33 Merge 3.2 by Kristjan Valur Jonsson · 13 years ago
  47. fa3edbe Merge 3.1 by Kristjan Valur Jonsson · 13 years ago
  48. 35722a9 Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle. by Kristjan Valur Jonsson · 13 years ago
  49. 5d44613 Add optional *func* argument to itertools.accumulate(). by Raymond Hettinger · 13 years ago
  50. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  51. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  52. 2d93e6e Update the itertools.accumulate() docs. by Raymond Hettinger · 14 years ago
  53. d8ff465 Simplify the signature for itertools.accumulate() to match numpy. Handle one item iterable the same way as min()/max(). by Raymond Hettinger · 14 years ago
  54. 482ba77 Add itertools.accumulate(). by Raymond Hettinger · 14 years ago
  55. 101f09e Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 14 years ago
  56. 69b34bf Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 14 years ago
  57. 19f2aeb Merged revisions 86596 via svnmerge from by Ezio Melotti · 14 years ago
  58. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  59. b58e0bd use assert[Not]In where appropriate by Ezio Melotti · 15 years ago
  60. a3e1ad2 Issue 7410: deepcopy of itertools.count() reset the count. by Raymond Hettinger · 15 years ago
  61. 6c8ee7a Issue #7410: deepcopy of itertools.count was resetting the count. by Raymond Hettinger · 15 years ago
  62. a9311a3 Fix exception handling in itertools.izip_longest(). by Raymond Hettinger · 15 years ago
  63. fc43851 Fix exception handling in itertools.izip_longest(). by Raymond Hettinger · 15 years ago
  64. ab91fde Merged revisions 73715 via svnmerge from by Georg Brandl · 15 years ago
  65. c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
  66. eb13fdd Port r69837: Fix keyword arguments for itertools.count(). Step arg without a start arg was ignored. by Raymond Hettinger · 16 years ago
  67. 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
  68. f4bb7f2 Add keyword arg support to itertools.repeat(). by Raymond Hettinger · 16 years ago
  69. 15a4950 Add keyword arg support to itertools.compress(). by Raymond Hettinger · 16 years ago
  70. d6280f4 Add GC support to count() objects. by Raymond Hettinger · 16 years ago
  71. 9e8dbbc Add keyword argument support to itertools.count(). by Raymond Hettinger · 16 years ago
  72. de09acf One more test. by Raymond Hettinger · 16 years ago
  73. 8a882a7 Add an extra testcase. by Raymond Hettinger · 16 years ago
  74. 3072921 Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. by Raymond Hettinger · 16 years ago
  75. d04fa31 Minor doc fixes. by Raymond Hettinger · 16 years ago
  76. 191e850 Add more tests for the powerset() recipe. by Raymond Hettinger · 16 years ago
  77. da6bc52 More exhaustive combinatoric checks. by Raymond Hettinger · 16 years ago
  78. d17ad8d Stronger tests for combinatoric relationships. by Raymond Hettinger · 16 years ago
  79. eb508ad Add tests to verify combinatoric relationships. by Raymond Hettinger · 16 years ago
  80. 883d276 Beautify grouper() recipe in docs. by Raymond Hettinger · 16 years ago
  81. d07d939 Forward port r69001: itertools.combinations_with_replacement(). by Raymond Hettinger · 16 years ago
  82. 6b3b0fc Forward port r68941 adding itertools.compress(). by Raymond Hettinger · 16 years ago
  83. ace6733 Backport r68942: update powerset() recipe. by Raymond Hettinger · 16 years ago
  84. 5bad41e Merge in r68394 fixing itertools.permutations() and combinations(). by Raymond Hettinger · 16 years ago
  85. ad9d96b Issue #4615. Document how to use itertools for de-duping. by Raymond Hettinger · 16 years ago
  86. d18de0e Merged revisions 65259,65263,65296,65307,65321 via svnmerge from by Benjamin Peterson · 16 years ago
  87. f5a2e47 Neaten-up the itertools recipes. by Raymond Hettinger · 16 years ago
  88. 3dbca81 Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-65099,65127-65128,65131,65133-65136,65139,65149-65151,65155,65158-65159,65176-65178,65183-65184,65187-65190,65192,65194 via svnmerge from by Georg Brandl · 16 years ago
  89. ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
  90. dd15f6c Merged revisions 61239-61249,61252-61257,61260-61264,61269-61275,61278-61279,61285-61286,61288-61290,61298,61303-61305,61312-61314,61317,61329,61332,61344,61350-61351,61363-61376,61378-61379,61382-61383,61387-61388,61392,61395-61396,61402-61403 via svnmerge from by Christian Heimes · 16 years ago
  91. 736c0ab Move itertools izip() code to builtins as zip(). Complete the renaming. by Raymond Hettinger · 16 years ago
  92. b0002d2 Rename ifilterfalse() to filterfalse() and izip_longest() to zip_longest(). by Raymond Hettinger · 16 years ago
  93. a6c6037 Issues 2186 and 2187. Move map() from itertools to builtins. by Raymond Hettinger · 16 years ago
  94. 17301e9 Issue 2186 and 2187. Move filter from itertools to builtins. by Raymond Hettinger · 16 years ago
  95. 7864476 Merged revisions 61209-61214,61217-61222,61224-61226,61233-61237 via svnmerge from by Christian Heimes · 16 years ago
  96. 26a96fa Fix failing itertools test: since revision 61118, by Mark Dickinson · 16 years ago
  97. f16baeb Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61083,61085,61092-61097,61103-61104,61110-61112,61114-61115,61117-61125 via svnmerge from by Christian Heimes · 16 years ago
  98. 380f7f2 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,61066,61068,61070,61081-61095 via svnmerge from by Christian Heimes · 16 years ago
  99. 836baa5 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61064,61066-61080 via svnmerge from by Christian Heimes · 16 years ago
  100. 90c3d9b Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60789,60793,60796,60799-60809,60812-60813,60815-60821,60823-60826,60828-60829,60831-60834,60836,60838-60839,60846-60849,60852-60854,60856-60859,60861-60870,60874-60875,60880-60881,60886,60888-60890,60892,60894-60898,60900,60902-60906,60908,60911-60917,60919-60920,60922,60926,60929-60931,60933-60935,60937,60939-60941,60943-60954,60959-60961,60963-60969,60971-60976 via svnmerge from by Christian Heimes · 17 years ago