1. fb92f39 Issue 18752: Make chain.from_iterable() more visible in the documentation. by Raymond Hettinger · 11 years ago
  2. 9edb168 cwr_next(): move invariants out of loops. by Tim Peters · 11 years ago
  3. c554f72 Issue #18912: Fix indentation in docstring by Eli Bendersky · 11 years ago
  4. da30acf Closes #18220: expand itertools.islice docstring to 2 lines by Andrew Kuchling · 11 years ago
  5. 446a39f Close #18285: add 'repeat' parameter to docstring for product by Andrew Kuchling · 11 years ago
  6. b003ffa Closes #18239: correct description of count() in module docstring by Andrew Kuchling · 11 years ago
  7. 278d03b Revert a premature patch for issue #14010 (changeset aaaf36026511). by Serhiy Storchaka · 11 years ago
  8. e8f706e Issue #14010: Fix a crash when iterating or deleting deeply nested filters by Serhiy Storchaka · 11 years ago
  9. d269b5e Clean trailing whitespace in itertoolsmodule.c. by Serhiy Storchaka · 11 years ago
  10. e7e9c32 Clean trailing whitespace in itertoolsmodule.c. by Serhiy Storchaka · 11 years ago
  11. 339e91d Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() by Serhiy Storchaka · 11 years ago
  12. a3e9128 Issue #13454: Fix a crash when deleting an iterator created by itertools.tee() by Serhiy Storchaka · 11 years ago
  13. 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  14. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  15. 33cac85 Add safecase to silence Win64 warning. by Martin v. Löwis · 12 years ago
  16. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  17. 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago
  18. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  19. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  20. a61b053 Merge #12973 itertools fix. by Mark Dickinson · 13 years ago
  21. b2f6bc7 Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks Stefan Krah. by Mark Dickinson · 13 years ago
  22. 978da33 Merge 3.2 by Kristjan Valur Jonsson · 13 years ago
  23. fa3edbe Merge 3.1 by Kristjan Valur Jonsson · 13 years ago
  24. 35722a9 Bugfix: Properly test for errors from PyLong_AsLong() in itertools.cycle. by Kristjan Valur Jonsson · 13 years ago
  25. 5bf7091 Update docstrings for itertools.accumulate(). by Raymond Hettinger · 13 years ago
  26. 5d44613 Add optional *func* argument to itertools.accumulate(). by Raymond Hettinger · 13 years ago
  27. 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
  28. 482ba77 Add itertools.accumulate(). by Raymond Hettinger · 14 years ago
  29. 101f09e Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 14 years ago
  30. 69b34bf Issue #10323: Predictable final state for slice(). by Raymond Hettinger · 14 years ago
  31. 7a61e3c Merged revisions 81891 via svnmerge from by Ezio Melotti · 14 years ago
  32. bfd73fa Merged revisions 81889 via svnmerge from by Ezio Melotti · 14 years ago
  33. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  34. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  35. a3e1ad2 Issue 7410: deepcopy of itertools.count() reset the count. by Raymond Hettinger · 15 years ago
  36. 6c8ee7a Issue #7410: deepcopy of itertools.count was resetting the count. by Raymond Hettinger · 15 years ago
  37. d3a77c0 Fix docstrings for itertools combinatoric functions. by Raymond Hettinger · 15 years ago
  38. 36c3c02 Fix docstrings for itertools combinatoric functions. by Raymond Hettinger · 15 years ago
  39. a9311a3 Fix exception handling in itertools.izip_longest(). by Raymond Hettinger · 15 years ago
  40. fc43851 Fix exception handling in itertools.izip_longest(). by Raymond Hettinger · 15 years ago
  41. bbcd1eb add sys prefix by Benjamin Peterson · 15 years ago
  42. ec7bfb3 Issue 6305: Clarify error message for large arguments to itertools.islice(). by Raymond Hettinger · 15 years ago
  43. 912fbca Merged revisions 69855 via svnmerge from by Benjamin Peterson · 15 years ago
  44. eb13fdd Port r69837: Fix keyword arguments for itertools.count(). Step arg without a start arg was ignored. by Raymond Hettinger · 15 years ago
  45. f4bb7f2 Add keyword arg support to itertools.repeat(). by Raymond Hettinger · 15 years ago
  46. 15a4950 Add keyword arg support to itertools.compress(). by Raymond Hettinger · 15 years ago
  47. 25e26a0 Merged revisions 69688,69690 via svnmerge from by Benjamin Peterson · 15 years ago
  48. d6280f4 Add GC support to count() objects. by Raymond Hettinger · 15 years ago
  49. 9e8dbbc Add keyword argument support to itertools.count(). by Raymond Hettinger · 15 years ago
  50. 6dfff19 Fix spaces/tabs in example. by Raymond Hettinger · 15 years ago
  51. 3072921 Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. by Raymond Hettinger · 15 years ago
  52. a86f2c0 Merged revisions 69466,69480 via svnmerge from by Benjamin Peterson · 15 years ago
  53. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  54. 811f3dc Fix typo. by Raymond Hettinger · 15 years ago
  55. 3522a58 Update itertools.__doc__ to include all tools. by Raymond Hettinger · 15 years ago
  56. d07d939 Forward port r69001: itertools.combinations_with_replacement(). by Raymond Hettinger · 15 years ago
  57. 6b3b0fc Forward port r68941 adding itertools.compress(). by Raymond Hettinger · 15 years ago
  58. f343e01 Merged revisions 68560 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  59. 5bad41e Merge in r68394 fixing itertools.permutations() and combinations(). by Raymond Hettinger · 16 years ago
  60. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  61. 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
  62. d2bee32 Fix a refleak by Neal Norwitz · 16 years ago
  63. 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
  64. 736c0ab Move itertools izip() code to builtins as zip(). Complete the renaming. by Raymond Hettinger · 16 years ago
  65. b0002d2 Rename ifilterfalse() to filterfalse() and izip_longest() to zip_longest(). by Raymond Hettinger · 16 years ago
  66. a6c6037 Issues 2186 and 2187. Move map() from itertools to builtins. by Raymond Hettinger · 16 years ago
  67. 17301e9 Issue 2186 and 2187. Move filter from itertools to builtins. by Raymond Hettinger · 16 years ago
  68. 7864476 Merged revisions 61209-61214,61217-61222,61224-61226,61233-61237 via svnmerge from by Christian Heimes · 16 years ago
  69. b558a2e Merged revisions 61143-61144,61146-61147,61150-61151,61157,61165-61168,61170-61173,61176-61177,61183 via svnmerge from by Christian Heimes · 16 years ago
  70. 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
  71. 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
  72. 836baa5 Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61064,61066-61080 via svnmerge from by Christian Heimes · 16 years ago
  73. 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 · 16 years ago
  74. c3f30c4 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-60931,60933-60958 via svnmerge from by Christian Heimes · 16 years ago
  75. 1dfde1d Replace map(None, *iterables) with zip(*iterables). by Raymond Hettinger · 17 years ago
  76. 679db4a Merged revisions 59985-60000,60002,60005-60007,60009-60042 via svnmerge from by Christian Heimes · 17 years ago
  77. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  78. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  79. 8ce8a78 Merged revisions 58221-58741 via svnmerge from by Guido van Rossum · 17 years ago
  80. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  81. 7569dfe Add a format specifier %R to PyUnicode_FromFormat(), which embeds by Walter Dörwald · 17 years ago
  82. 1ab8330 Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror by Walter Dörwald · 17 years ago
  83. 360e4b8 Merged revisions 55325-55327 via svnmerge from by Guido van Rossum · 17 years ago
  84. a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 17 years ago
  85. cf297e4 Merged revisions 53623-53858 via svnmerge from by Thomas Wouters · 17 years ago
  86. b213704 Merged revisions 53451-53537 via svnmerge from by Thomas Wouters · 17 years ago
  87. 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
  88. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  89. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  90. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  91. 02cbf4a More unconsting. by Martin v. Löwis · 18 years ago
  92. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 18 years ago
  93. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 18 years ago
  94. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  95. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  96. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  97. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  98. b259405 Added optional None arguments to itertools.islice(). by Raymond Hettinger · 20 years ago
  99. 08ebfec some platforms still need offsetof() from structmember.h by Fred Drake · 20 years ago
  100. a9f6092 Fix and test weak referencing of itertools.tee objects. by Raymond Hettinger · 20 years ago