| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-16 | 35 | -112/+401 |
|
|
* | Deleted two duplicated paragraphs in the intro. Added mention of | Mark Summerfield | 2008-02-14 | 1 | -13/+7 |
|
|
* | Minor doc updates for Py3.0 | Raymond Hettinger | 2008-02-14 | 1 | -32/+3 |
|
|
* | Note that the key and reverse arguments must be specified as keywords | Raymond Hettinger | 2008-02-14 | 1 | -3/+1 |
|
|
* | Note the the sort arguments are required to be keywords. | Raymond Hettinger | 2008-02-14 | 1 | -4/+4 |
|
|
* | Documentation nit. | Raymond Hettinger | 2008-02-14 | 1 | -2/+2 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-14 | 14 | -636/+684 |
|
|
* | typo | Kurt B. Kaiser | 2008-02-14 | 1 | -1/+1 |
|
|
* | Merged revisions 60767,60768 via svnmerge from | Thomas Heller | 2008-02-13 | 6 | -1/+174 |
|
|
* | Improve formatting for arg names in previous checkin. | Kurt B. Kaiser | 2008-02-13 | 1 | -3/+3 |
|
|
* | list.sort() and builtin.sorted() no longer accept 'cmp' argument. | Kurt B. Kaiser | 2008-02-13 | 1 | -0/+4 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-12 | 8 | -14/+65 |
|
|
* | Convert some custom sort comparison functions to equivalent key functions. | Kurt B. Kaiser | 2008-02-12 | 2 | -15/+2 |
|
|
* | Move UserList to collections. | Raymond Hettinger | 2008-02-12 | 14 | -143/+133 |
|
|
* | Bug #1595: Remove extra semicolon. | Martin v. Löwis | 2008-02-12 | 1 | -1/+1 |
|
|
* | Revert the last svnmerge (r60681) from trunk to _ctypes.c, it should | Thomas Heller | 2008-02-12 | 1 | -39/+2 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-11 | 4 | -2/+32 |
|
|
* | No need to register classes that already inherit from ABCs. | Raymond Hettinger | 2008-02-11 | 4 | -9/+0 |
|
|
* | Renamed test_format to test__format__, since it really tests the __format__ m... | Eric Smith | 2008-02-11 | 1 | -1/+1 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-11 | 15 | -146/+190 |
|
|
* | The new default protocol is two. | Raymond Hettinger | 2008-02-10 | 1 | -1/+1 |
|
|
* | Block r60713 with svnmerge. | Eric Smith | 2008-02-10 | 0 | -0/+0 |
|
|
* | r60707 does not need porting to py3k from trunk. | Eric Smith | 2008-02-10 | 0 | -0/+0 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-09 | 6 | -20/+31 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-09 | 6 | -22/+116 |
|
|
* | MappingView is Sized. | Raymond Hettinger | 2008-02-09 | 1 | -1/+1 |
|
|
* | Merge r60673 | Raymond Hettinger | 2008-02-09 | 1 | -1/+1 |
|
|
* | Add another usage note for collections.Set | Raymond Hettinger | 2008-02-09 | 1 | -1/+8 |
|
|
* | Document how to use Set and MutableSet as a mixin. | Raymond Hettinger | 2008-02-09 | 2 | -3/+20 |
|
|
* | Merge r60679 | Raymond Hettinger | 2008-02-09 | 1 | -30/+4 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-09 | 27 | -2141/+2457 |
|
|
* | Finish the collections ABC table. | Raymond Hettinger | 2008-02-09 | 1 | -35/+36 |
|
|
* | Merge r60674 an 60675. | Raymond Hettinger | 2008-02-09 | 1 | -6/+19 |
|
|
* | Smalls improvement to example in the docs for collections ABCs. | Raymond Hettinger | 2008-02-08 | 1 | -5/+7 |
|
|
* | Tiny grammatical fix. | Mark Summerfield | 2008-02-08 | 1 | -2/+2 |
|
|
* | Simplify float conversion recipe. | Raymond Hettinger | 2008-02-07 | 1 | -28/+18 |
|
|
* | Issue 2025: Add index() and count() methods to tuple so that it will follow | Raymond Hettinger | 2008-02-07 | 3 | -0/+119 |
|
|
* | Reversed UserLists are not required to support __length_hint__. | Raymond Hettinger | 2008-02-06 | 1 | -40/+0 |
|
|
* | MutableSequence requires an insert() method. | Raymond Hettinger | 2008-02-06 | 1 | -0/+2 |
|
|
* | Let the world know that UserList is a MutableSequence. | Raymond Hettinger | 2008-02-06 | 2 | -3/+12 |
|
|
* | Fix-up the _from_iterable() method to return instances of the subclass where ... | Raymond Hettinger | 2008-02-06 | 1 | -1/+6 |
|
|
* | Fix-up the collections docs. | Raymond Hettinger | 2008-02-06 | 1 | -18/+41 |
|
|
* | Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,... | Christian Heimes | 2008-02-06 | 29 | -559/+905 |
|
|
* | Fixed a table and a title that were broken. | Mark Summerfield | 2008-02-06 | 1 | -12/+14 |
|
|
* | Update docs for collections ABCs and for collections.UserDict. | Raymond Hettinger | 2008-02-06 | 3 | -60/+41 |
|
|
* | Remove the old UserDict module. | Raymond Hettinger | 2008-02-06 | 2 | -82/+1 |
|
|
* | Migrate remaining tests from UserDict.UserDict to collections.UserDict. | Raymond Hettinger | 2008-02-06 | 6 | -14/+14 |
|
|
* | Convert test_userdict to use the collections.UserDict. | Raymond Hettinger | 2008-02-05 | 3 | -41/+39 |
|
|
* | Fix. | Georg Brandl | 2008-02-05 | 1 | -2/+2 |
|
|
* | Respect EOL 80. | Georg Brandl | 2008-02-05 | 1 | -6/+9 |
|
|