| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix error in 2-to-3 translation of docs. | Raymond Hettinger | 2009-05-14 | 1 | -1/+1 |
|
|
* | Fix alignment | Raymond Hettinger | 2009-04-10 | 1 | -13/+13 |
|
|
* | Add examples. | Raymond Hettinger | 2009-04-10 | 1 | -58/+21 |
|
|
* | Clarify the table entries for combinatorics. | Raymond Hettinger | 2009-04-10 | 1 | -8/+13 |
|
|
* | Merged revisions 70712,70714,70764-70765,70769-70771,70773,70776-70777,70788-... | Benjamin Peterson | 2009-04-05 | 1 | -1/+1 |
|
|
* | For some reason rst docs like an initial 3 space indent. | Raymond Hettinger | 2009-03-23 | 1 | -23/+23 |
|
|
* | fix incorrect merge | Benjamin Peterson | 2009-03-22 | 1 | -23/+23 |
|
|
* | Issue 5477: Fix buglet in the itertools documentation. | Raymond Hettinger | 2009-03-12 | 1 | -3/+4 |
|
|
* | Add consume() recipe to itertools docs. | Raymond Hettinger | 2009-03-09 | 1 | -0/+4 |
|
|
* | Issue 5443: Fix typo. | Raymond Hettinger | 2009-03-09 | 1 | -1/+1 |
|
|
* | Update itertools recipes to use next(). | Raymond Hettinger | 2009-02-23 | 1 | -4/+3 |
|
|
* | Add some cross-references to the docs. Simplify the python code equivalent f... | Raymond Hettinger | 2009-02-19 | 1 | -3/+3 |
|
|
* | Generalize the itertools.tee() recipe. | Raymond Hettinger | 2009-02-18 | 1 | -24/+24 |
|
|
* | Fixup intro paragraphs for the itertools docs. Add some tables for quick ref... | Raymond Hettinger | 2009-02-17 | 1 | -26/+48 |
|
|
* | Add keyword argument support to itertools.count(). | Raymond Hettinger | 2009-02-14 | 1 | -2/+3 |
|
|
* | Issue 5032: added a step argument to itertools.count() and allowed non-integ... | Raymond Hettinger | 2009-02-12 | 1 | -9/+11 |
|
|
* | Merged revisions 69141,69211-69212 via svnmerge from | Benjamin Peterson | 2009-02-06 | 1 | -23/+23 |
|
|
* | Minor doc fixes. | Raymond Hettinger | 2009-02-04 | 1 | -3/+3 |
|
|
* | Beautify grouper() recipe in docs. | Raymond Hettinger | 2009-01-27 | 1 | -1/+1 |
|
|
* | Put functions back in alphabetical order. | Raymond Hettinger | 2009-01-27 | 1 | -39/+38 |
|
|
* | Forward port r69001: itertools.combinations_with_replacement(). | Raymond Hettinger | 2009-01-27 | 1 | -16/+47 |
|
|
* | Forward port r68941 adding itertools.compress(). | Raymond Hettinger | 2009-01-26 | 1 | -4/+14 |
|
|
* | Backport r68942: update powerset() recipe. | Raymond Hettinger | 2009-01-26 | 1 | -5/+3 |
|
|
* | Merge in r68394 fixing itertools.permutations() and combinations(). | Raymond Hettinger | 2009-01-08 | 1 | -3/+12 |
|
|
* | Merged revisions 68112,68115,68120,68133,68141-68142,68145-68146,68148-68149 ... | Georg Brandl | 2009-01-03 | 1 | -4/+4 |
|
|
* | Remove trailing whitespace. | Georg Brandl | 2009-01-03 | 1 | -9/+9 |
|
|
* | Issue #4615. Document how to use itertools for de-duping. | Raymond Hettinger | 2009-01-02 | 1 | -0/+24 |
|
|
* | fix some py3k doc nits | Benjamin Peterson | 2008-10-24 | 1 | -5/+5 |
|
|
* | Merged revisions 65259,65263,65296,65307,65321 via svnmerge from | Benjamin Peterson | 2008-07-31 | 1 | -2/+1 |
|
|
* | Merged revisions 65209-65216,65225-65226,65233,65239,65246-65247,65255-65256 ... | Benjamin Peterson | 2008-07-31 | 1 | -3/+4 |
|
|
* | Fix-up recipe with a syntax error (as discussed on python-dev). | Raymond Hettinger | 2008-07-30 | 1 | -1/+2 |
|
|
* | Neaten-up the itertools recipes. | Raymond Hettinger | 2008-07-30 | 1 | -6/+4 |
|
|
* | Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-... | Georg Brandl | 2008-07-23 | 1 | -50/+37 |
|
|
* | remove some old versionchanged and versionadded directives | Benjamin Peterson | 2008-04-24 | 1 | -8/+0 |
|
|
* | Merged revisions 62350-62355,62358-62359,62364-62365,62370,62372-62375,62378-... | Christian Heimes | 2008-04-19 | 1 | -9/+5 |
|
|
* | Merged revisions 61724-61725,61731-61735,61737,61739,61741,61743-61744,61753,... | Christian Heimes | 2008-03-23 | 1 | -3/+12 |
|
|
* | In Py3.0, the recipes can use keyword-only arguments instead of using the **k... | Raymond Hettinger | 2008-03-13 | 1 | -6/+4 |
|
|
* | Sync-up with doc improvements in Py2.6 | Raymond Hettinger | 2008-03-13 | 1 | -65/+46 |
|
|
* | Rename ifilterfalse() to filterfalse() and izip_longest() to zip_longest(). | Raymond Hettinger | 2008-03-13 | 1 | -7/+7 |
|
|
* | Issues 2186 and 2187. Move map() from itertools to builtins. | Raymond Hettinger | 2008-03-13 | 1 | -27/+10 |
|
|
* | Issue 2186 and 2187. Move filter from itertools to builtins. | Raymond Hettinger | 2008-03-13 | 1 | -17/+2 |
|
|
* | Merged revisions 61209-61214,61217-61222,61224-61226,61233-61237 via svnmerge... | Christian Heimes | 2008-03-04 | 1 | -11/+34 |
|
|
* | Merged revisions 61143-61144,61146-61147,61150-61151,61157,61165-61168,61170-... | Christian Heimes | 2008-03-02 | 1 | -10/+30 |
|
|
* | Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,... | Christian Heimes | 2008-02-28 | 1 | -11/+44 |
|
|
* | Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,... | Christian Heimes | 2008-02-28 | 1 | -3/+7 |
|
|
* | Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,... | Christian Heimes | 2008-02-28 | 1 | -14/+13 |
|
|
* | Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61064,... | Christian Heimes | 2008-02-26 | 1 | -2/+44 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-23 | 1 | -0/+29 |
|
|
* | Update docs w.r.t. PEP 3100 changes -- patch for GHOP by Dan Finnie. | Georg Brandl | 2008-02-01 | 1 | -3/+5 |
|
|
* | Merged revisions 60441-60474 via svnmerge from | Christian Heimes | 2008-01-31 | 1 | -1/+12 |
|
|