1. 97b3195 Fix example for itertools.count(). by Raymond Hettinger · 14 years ago
  2. 3b85b9b Merged revisions 85843,85849-85850,85867,85907,85914,86134,86187,86315-86316,86390,86424-86425,86428 via svnmerge from by Georg Brandl · 15 years ago
  3. db235c1 Merged revisions 85008,85011,85240 via svnmerge from by Georg Brandl · 15 years ago
  4. d070cc5 Merged revisions 83226-83227,83229-83230,83232 via svnmerge from by Georg Brandl · 15 years ago
  5. a1d61d0 Fixup new itertools recipes. by Raymond Hettinger · 15 years ago
  6. f28dd0d Cleanup itertools recipes by Raymond Hettinger · 15 years ago
  7. 4bfd3bd Add and update itertools recipes. by Raymond Hettinger · 15 years ago
  8. b8d688c Update itertools recipe for consume(). by Raymond Hettinger · 15 years ago
  9. d282b93 Add a note on optimizing the itertools recipes for production. by Raymond Hettinger · 15 years ago
  10. 5b027f8 Update itertools recipes. by Raymond Hettinger · 15 years ago
  11. 77a64e7 #7746: rephrase a sentence by Ezio Melotti · 16 years ago
  12. 9eac119 Fix docstrings for itertools combinatoric functions. by Raymond Hettinger · 16 years ago
  13. 3a02624 Add usage note. by Raymond Hettinger · 16 years ago
  14. cccfc82 Fix typo by Raymond Hettinger · 16 years ago
  15. f0f475d Add examples. by Raymond Hettinger · 16 years ago
  16. f368fbc Clarify the table entries for combinatorics. by Raymond Hettinger · 16 years ago
  17. efa9771 typo fix by Andrew M. Kuchling · 16 years ago
  18. efa7c13 Issue 5477: Fix buglet in the itertools documentation. by Raymond Hettinger · 16 years ago
  19. 8f19598 Fix typo. by Raymond Hettinger · 16 years ago
  20. 3496a89 Add consume() recipe to itertools docs. by Raymond Hettinger · 16 years ago
  21. fed84c7 Issue 5443: Fix typo. by Raymond Hettinger · 16 years ago
  22. d47442e Update itertools recipes to use next(). by Raymond Hettinger · 16 years ago
  23. f9bce83 Add some cross-references to the docs. Simplify the python code equivalent for izip(). Supply an optional argument for the nth() recipe. by Raymond Hettinger · 16 years ago
  24. c8223b0 Generalize the itertools.tee() recipe. by Raymond Hettinger · 16 years ago
  25. 0aee942 Fixup intro paragraphs for the itertools docs. Add some tables for quick reference. by Raymond Hettinger · 16 years ago
  26. a403803 Add keyword argument support to itertools.count(). by Raymond Hettinger · 16 years ago
  27. 31c769c Issue 5032: added a step argument to itertools.count() and allowed non-integer arguments. by Raymond Hettinger · 16 years ago
  28. d507afd Minor doc fixups. by Raymond Hettinger · 17 years ago
  29. 4829136 fix indentation by Benjamin Peterson · 17 years ago
  30. d081abc Promote combinations_with_replacement() from a recipe to a regular itertool. by Raymond Hettinger · 17 years ago
  31. 68d919e Improved itertools recipe for generating powerset(). by Raymond Hettinger · 17 years ago
  32. 2bcb8e9 Promote compress() from a recipe to being a regular itertool. by Raymond Hettinger · 17 years ago
  33. 5b913e3 Forward port r68394 for issue 4816. by Raymond Hettinger · 17 years ago
  34. c62ef8b Remove trailing whitespace. by Georg Brandl · 17 years ago
  35. 44e1581 Issue #4615. Document how to use itertools for de-duping. by Raymond Hettinger · 17 years ago
  36. 8ea9999 fix highlighting by Benjamin Peterson · 17 years ago
  37. f080e6d Alter recipe to show how to call izip_longest() with by Raymond Hettinger · 17 years ago
  38. efdf706 Neaten-up the itertools recipes. by Raymond Hettinger · 17 years ago
  39. 5255cba document default value for fillvalue by Benjamin Peterson · 17 years ago
  40. 8c81fda Use correct indentation. by Georg Brandl · 17 years ago
  41. f1f46f0 Clean-up itertools docs and recipes. by Raymond Hettinger · 17 years ago
  42. 39e0eb7 Fix compress() recipe in docs to use itertools. by Raymond Hettinger · 17 years ago
  43. 3369167 Add recipe to the itertools docs. by Raymond Hettinger · 17 years ago
  44. e2e0313 Typo fixes by Andrew M. Kuchling · 17 years ago
  45. 5eaffc4 Issue 2648: Add leading zero to money format recipe in the docs. by Raymond Hettinger · 17 years ago
  46. e70bb8d Simplify demo code. by Raymond Hettinger · 17 years ago
  47. e8f1b00 Enable doctest running for several other documents. by Georg Brandl · 17 years ago
  48. e8b4b60 Add recipe to docs. by Raymond Hettinger · 17 years ago
  49. 38fb9be Tweak recipes and tests by Raymond Hettinger · 17 years ago
  50. 040f10e Add examples. by Raymond Hettinger · 17 years ago
  51. d553d85 Beef-up docs and tests for itertools. Fix-up end-case for product(). by Raymond Hettinger · 17 years ago
  52. 684868a Fix sentence fragment by Andrew M. Kuchling · 17 years ago
  53. 2b7a5c4 Tighten example code. by Raymond Hettinger · 17 years ago
  54. f287f17 Finish-up docs for combinations() and permutations() in itertools. by Raymond Hettinger · 17 years ago
  55. 330958e Document impending updates to itertools. by Raymond Hettinger · 17 years ago
  56. 18750ab Add repeat keyword argument to itertools.product(). by Raymond Hettinger · 17 years ago
  57. c105289 Simply the sample code for combinations(). by Raymond Hettinger · 17 years ago
  58. 93e804d Add itertools.combinations(). by Raymond Hettinger · 17 years ago
  59. 1b3e41c Banish tab. by Georg Brandl · 17 years ago
  60. 3fa41d5 Docs for itertools.combinations(). Implementation in forthcoming checkin. by Raymond Hettinger · 17 years ago
  61. 7832d4d Add recipe using itertools.product(). by Raymond Hettinger · 17 years ago
  62. c5705a8 Document itertools.product(). by Raymond Hettinger · 17 years ago
  63. a44327a Update itertool recipes by Raymond Hettinger · 18 years ago
  64. 2dec48d Improve variable name in sample code by Raymond Hettinger · 18 years ago
  65. 48c6293 Document when to use izip_longest(). by Raymond Hettinger · 18 years ago
  66. 4731709 Make starmap() match its pure python definition and accept any itertable input (not just tuples). by Raymond Hettinger · 18 years ago
  67. 81a885a Improve docs for itertools.groupby(). The use of xrange(0) to create a unique object is less obvious than object(). by Raymond Hettinger · 18 years ago
  68. 5d332bb Simpler documentation for itertools.tee(). Should be backported. by Raymond Hettinger · 18 years ago
  69. e7a0990 Add :term:s for iterator. by Georg Brandl · 18 years ago
  70. cf3fb25 Add :term: for generators. by Georg Brandl · 18 years ago
  71. 50e90e2 itertools.count() no longer limited to sys.maxint. by Raymond Hettinger · 18 years ago
  72. 8ec7f65 Move the 2.6 reST doc tree in place. by Georg Brandl · 18 years ago