1. 3662c90 Backport r61286 adding GC to the grouper for itertools.groupby() fixing Issue 2246. by Raymond Hettinger · 17 years ago
  2. f4601d8 Fix two problems that emerged when the testsuite was run with an x64 build: PyLong_FromSSize_t incorrectly assumed an unsigned object, and itertools.count() had the wrong upper limit for the iterator. by Kristján Valur Jónsson · 18 years ago
  3. 9f0e1ea Do not let overflows in enumerate() and count() pass silently. by Raymond Hettinger · 19 years ago
  4. 8e932e7 Bug #1486663: don't reject keyword arguments for subclasses of builtin by Georg Brandl · 19 years ago
  5. 187e648 backport of r51950 by Jack Diederich · 19 years ago
  6. 7ae5f29 Backport fix for SF bug #1550714, itertools.tee raises SystemError by Neal Norwitz · 19 years ago
  7. 9029b5f nextlink can be NULL if teedataobject_new fails, so use XINCREF. by Neal Norwitz · 19 years ago
  8. 2f3136b Fix compiler warning (and whitespace) on Mac OS 10.4. (A lot of this code looked duplicated, I wonder if a utility function could help reduce the duplication here.) by Neal Norwitz · 19 years ago
  9. 6c433a9 use Py_ssize_t in places that may need it by Jack Diederich · 19 years ago
  10. b3deb94 Add missing PyObject_GC_Track call, causing *some* itertools.tee objects to by Thomas Wouters · 19 years ago
  11. 19bf33b Make itertools.tee and its internal teedataobject participate in GC. This by Thomas Wouters · 19 years ago
  12. 02cbf4a More unconsting. by Martin v. Löwis · 19 years ago
  13. ad0a462 Use Py_ssize_t for counts and sizes. by Martin v. Löwis · 19 years ago
  14. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
  15. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 20 years ago
  16. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 20 years ago
  17. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 20 years ago
  18. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 20 years ago
  19. b259405 Added optional None arguments to itertools.islice(). by Raymond Hettinger · 21 years ago
  20. 08ebfec some platforms still need offsetof() from structmember.h by Fred Drake · 21 years ago
  21. a9f6092 Fix and test weak referencing of itertools.tee objects. by Raymond Hettinger · 21 years ago
  22. 880430e Replace structure member before decreffing. by Raymond Hettinger · 21 years ago
  23. 4cda01e * Increase test coverage. by Raymond Hettinger · 21 years ago
  24. 75ccea3 SF patch #1020188: Use Py_CLEAR where necessary to avoid crashes by Raymond Hettinger · 21 years ago
  25. 58ed69b Exercise Jim's VISIT macro. by Raymond Hettinger · 21 years ago
  26. 9d7c870 SF #950057: itertools.chain doesn't "process" exceptions as they occur by Raymond Hettinger · 21 years ago
  27. 0046839 Change two instance of format strings for PyString_FromFormat() to use %ld by Brett Cannon · 21 years ago
  28. 7dacda2 Provide more information representations of repeat() and count(). by Raymond Hettinger · 21 years ago
  29. 0faa1ca Speedup the inner loops for dropwhile(), islice(), ifilter(), and by Raymond Hettinger · 21 years ago
  30. f3938fd need to initialize ob_type slot at run-time, at least on cygwin by Skip Montanaro · 21 years ago
  31. 5cab2e3 Give itertools.repeat() a length method. by Raymond Hettinger · 21 years ago
  32. d25c1c6 Implement itertools.groupby() by Raymond Hettinger · 22 years ago
  33. ad983e7 Improve the implementation of itertools.tee(). by Raymond Hettinger · 22 years ago
  34. 0e4f764 Fix nits in error messages. by Raymond Hettinger · 22 years ago
  35. f0c5aec Minor improvements to itertools.tee(): by Raymond Hettinger · 22 years ago
  36. 4514369 Improvements to coding for itertools.tee(): by Raymond Hettinger · 22 years ago
  37. 6a5b027 Added itertools.tee() by Raymond Hettinger · 22 years ago
  38. 4f01f89 For safety, replace a tuple entry before decreffing it. by Raymond Hettinger · 22 years ago
  39. a56f6b6 SF bug #793826: using itertools.izip to mutate tuples by Raymond Hettinger · 22 years ago
  40. b5a4208 Modified itertools.izip() to match the behavior of __builtin__.zip() by Raymond Hettinger · 22 years ago
  41. 1d7a348 SF patch #770521: make itertools type declarations static by Raymond Hettinger · 22 years ago
  42. befa37d Minor updates: by Raymond Hettinger · 22 years ago
  43. 7d98fb9 Add missing DECREF. by Raymond Hettinger · 22 years ago
  44. bfef18c PyType_GenericAlloc is inherited from object. by Raymond Hettinger · 22 years ago
  45. d449eab Fixed dotted name assertion. by Raymond Hettinger · 22 years ago
  46. 7c2bb5b * Added a substantial number of edge case and argument tests for by Raymond Hettinger · 22 years ago
  47. 341deb7 The previous made the stop argument optional. by Raymond Hettinger · 22 years ago
  48. 14ef54c SF bug #730685: itertools.islice stop argument is not optional by Raymond Hettinger · 22 years ago
  49. dff694b Fix docstring typo by Andrew M. Kuchling · 22 years ago
  50. 1da1dbf Renamed PyObject_GenericGetIter to PyObject_SelfIter by Raymond Hettinger · 22 years ago
  51. 0153826 Created PyObject_GenericGetIter(). by Raymond Hettinger · 22 years ago
  52. d1a283b Several of the tools can make direct calls the inner iterators. by Raymond Hettinger · 22 years ago
  53. 61fe64d User requested changes to the itertools module. by Raymond Hettinger · 22 years ago
  54. d58f3fc Remove unused variable. by Guido van Rossum · 23 years ago
  55. 60eca93 C Code: by Raymond Hettinger · 23 years ago
  56. f0c0024 * Eliminated tuple re-use in imap(). Doing it correctly made the code by Raymond Hettinger · 23 years ago
  57. 2012f17 SF bug #681003: itertools issues by Raymond Hettinger · 23 years ago
  58. 96ef811 Move itertools module from the sandbox and into production. by Raymond Hettinger · 23 years ago