1. 85c3f26 Issue #28322: Fixed possible crashes when unpickle itertools objects from by Serhiy Storchaka · 8 years ago
  2. 8ddcf3a Issue #28019: itertools.count() no longer rounds non-integer step in range by Serhiy Storchaka · 8 years ago
  3. eb99570 Issue #27626: Spelling fixes in docs, comments and internal names by Martin Panter · 8 years ago
  4. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  5. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  6. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  7. d551625 Issue #25718: Fixed pickling and copying the accumulate() iterator with total is None. by Serhiy Storchaka · 9 years ago
  8. 4e3dd51 merge 3.4 by Benjamin Peterson · 9 years ago
  9. 630329e merge 3.3 by Benjamin Peterson · 9 years ago
  10. 0e617e2 remove some copyright notices supserseded by the toplevel ones by Benjamin Peterson · 9 years ago
  11. 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 9 years ago
  12. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  13. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  14. a84f6c3 Issue #25523: Merge a-to-an corrections from 3.4. by Serhiy Storchaka · 9 years ago
  15. d65c949 Issue #25523: Further a-to-an corrections. by Serhiy Storchaka · 9 years ago
  16. d7f65e5 Issue #25021: Merge 3.4 to 3.5 by Kristján Valur Jónsson · 9 years ago
  17. 95c3e6c Issue #25021: Merge from 3.3 to 3.4 by Kristján Valur Jónsson · 9 years ago
  18. 102764a Issue #25021: Correctly make sure that product.__setstate__ does not access by Kristján Valur Jónsson · 9 years ago
  19. acd61b6 Issue #24735: Fix invalid memory access in combinations_with_replacement() by Raymond Hettinger · 9 years ago
  20. d2117e1 merge by Raymond Hettinger · 9 years ago
  21. 553e156 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  22. d741a88 Fixed indentation of Python examples in C comments. by Serhiy Storchaka · 9 years ago
  23. 483405b Issue #22883: Got rid of outdated references to PyInt and PyString in comments. by Serhiy Storchaka · 10 years ago
  24. b5e8e57 Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  25. dee948b Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests. by Serhiy Storchaka · 10 years ago
  26. c468b53 merge 3.3 (#23364, #23363) by Benjamin Peterson · 10 years ago
  27. 0eaabf1 check for overflows in permutations() and product() (closes #23363, closes #23364) by Benjamin Peterson · 10 years ago
  28. f635dc3 merge 3.3 (#23365) by Benjamin Peterson · 10 years ago
  29. 6f08229 check for overflow in combinations_with_replacement (closes #23365) by Benjamin Peterson · 10 years ago
  30. 819c4e9 merge 3.3 (#23366) by Benjamin Peterson · 10 years ago
  31. 4b40eeb detect overflow in combinations (closes #23366) by Benjamin Peterson · 10 years ago
  32. 97d3555 Issue #19145: Fix handling of negative values for a "times" keyword argument to itertools.repeat()> by Raymond Hettinger · 10 years ago
  33. 26f82ef Issue #21321: itertools.islice() now releases the reference to the source iterator when the slice is exhausted. by Antoine Pitrou · 10 years ago
  34. 2dae92a Issue #15475: Add __sizeof__ implementations for itertools objects. by Serhiy Storchaka · 11 years ago
  35. b4a46cb Add a comment making it explicit that itertools.tee() is already 64bit-safe (issue #19049) by Antoine Pitrou · 11 years ago
  36. fb92f39 Issue 18752: Make chain.from_iterable() more visible in the documentation. by Raymond Hettinger · 11 years ago
  37. 8df58f7 Issue 18752: Make chain.from_iterable() more visible in the documentation. by Raymond Hettinger · 11 years ago
  38. 9edb168 cwr_next(): move invariants out of loops. by Tim Peters · 11 years ago
  39. c554f72 Issue #18912: Fix indentation in docstring by Eli Bendersky · 11 years ago
  40. da30acf Closes #18220: expand itertools.islice docstring to 2 lines by Andrew Kuchling · 11 years ago
  41. 446a39f Close #18285: add 'repeat' parameter to docstring for product by Andrew Kuchling · 11 years ago
  42. b003ffa Closes #18239: correct description of count() in module docstring by Andrew Kuchling · 11 years ago
  43. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  44. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  45. d269b5e Clean trailing whitespace in itertoolsmodule.c. by Serhiy Storchaka · 12 years ago
  46. e7e9c32 Clean trailing whitespace in itertoolsmodule.c. by Serhiy Storchaka · 12 years ago
  47. 339e91d Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() by Serhiy Storchaka · 12 years ago
  48. a3e9128 Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() by Serhiy Storchaka · 12 years ago
  49. 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  50. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  51. 33cac85 Add safecase to silence Win64 warning. by Martin v. Löwis · 12 years ago
  52. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  53. 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago
  54. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  55. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  56. a61b053 Merge #12973 itertools fix. by Mark Dickinson · 13 years ago
  57. b2f6bc7 Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks Stefan Krah. by Mark Dickinson · 13 years ago
  58. 978da33 Merge 3.2 by Kristjan Valur Jonsson · 13 years ago
  59. fa3edbe Merge 3.1 by Kristjan Valur Jonsson · 13 years ago
  60. 35722a9 Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle. by Kristjan Valur Jonsson · 13 years ago
  61. 5bf7091 Update docstrings for itertools.accumulate(). by Raymond Hettinger · 13 years ago
  62. 5d44613 Add optional *func* argument to itertools.accumulate(). by Raymond Hettinger · 13 years ago
  63. 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
  64. 482ba77 Add itertools.accumulate(). by Raymond Hettinger · 14 years ago
  65. 101f09e Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 14 years ago
  66. 69b34bf Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 14 years ago
  67. 7a61e3c Merged revisions 81891 via svnmerge from by Ezio Melotti · 14 years ago
  68. bfd73fa Merged revisions 81889 via svnmerge from by Ezio Melotti · 14 years ago
  69. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  70. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  71. a3e1ad2 Issue 7410: deepcopy of itertools.count() reset the count. by Raymond Hettinger · 15 years ago
  72. 6c8ee7a Issue #7410: deepcopy of itertools.count was resetting the count. by Raymond Hettinger · 15 years ago
  73. d3a77c0 Fix docstrings for itertools combinatoric functions. by Raymond Hettinger · 15 years ago
  74. 36c3c02 Fix docstrings for itertools combinatoric functions. by Raymond Hettinger · 15 years ago
  75. a9311a3 Fix exception handling in itertools.izip_longest(). by Raymond Hettinger · 15 years ago
  76. fc43851 Fix exception handling in itertools.izip_longest(). by Raymond Hettinger · 15 years ago
  77. bbcd1eb add sys prefix by Benjamin Peterson · 15 years ago
  78. ec7bfb3 Issue 6305: Clarify error message for large arguments to itertools.islice(). by Raymond Hettinger · 15 years ago
  79. 912fbca Merged revisions 69855 via svnmerge from by Benjamin Peterson · 16 years ago
  80. eb13fdd Port r69837: Fix keyword arguments for itertools.count(). Step arg without a start arg was ignored. by Raymond Hettinger · 16 years ago
  81. f4bb7f2 Add keyword arg support to itertools.repeat(). by Raymond Hettinger · 16 years ago
  82. 15a4950 Add keyword arg support to itertools.compress(). by Raymond Hettinger · 16 years ago
  83. 25e26a0 Merged revisions 69688,69690 via svnmerge from by Benjamin Peterson · 16 years ago
  84. d6280f4 Add GC support to count() objects. by Raymond Hettinger · 16 years ago
  85. 9e8dbbc Add keyword argument support to itertools.count(). by Raymond Hettinger · 16 years ago
  86. 6dfff19 Fix spaces/tabs in example. by Raymond Hettinger · 16 years ago
  87. 3072921 Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. by Raymond Hettinger · 16 years ago
  88. a86f2c0 Merged revisions 69466,69480 via svnmerge from by Benjamin Peterson · 16 years ago
  89. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  90. 811f3dc Fix typo. by Raymond Hettinger · 16 years ago
  91. 3522a58 Update itertools.__doc__ to include all tools. by Raymond Hettinger · 16 years ago
  92. d07d939 Forward port r69001: itertools.combinations_with_replacement(). by Raymond Hettinger · 16 years ago
  93. 6b3b0fc Forward port r68941 adding itertools.compress(). by Raymond Hettinger · 16 years ago
  94. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  95. 5bad41e Merge in r68394 fixing itertools.permutations() and combinations(). by Raymond Hettinger · 16 years ago
  96. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  97. 0c77a82 Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,63989,64014-64015,64021-64022,64063-64065,64067 via svnmerge from by Georg Brandl · 16 years ago
  98. d2bee32 Fix a refleak by Neal Norwitz · 16 years ago
  99. 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 · 17 years ago
  100. 736c0ab Move itertools izip() code to builtins as zip(). Complete the renaming. by Raymond Hettinger · 17 years ago