| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix typo. | Georg Brandl | 2010-12-18 | 1 | -1/+1 |
|
|
* | Add some internal links. | Raymond Hettinger | 2010-11-30 | 1 | -1/+2 |
|
|
* | Issue 6722: Improve the namedtuple examples. | Raymond Hettinger | 2010-11-21 | 1 | -1/+5 |
|
|
* | Provide links to Python source where the code is short, readable and | Éric Araujo | 2010-11-16 | 1 | -0/+8 |
|
|
* | Tweak example to make clear the argument is a boolean, not any integer. | Éric Araujo | 2010-11-06 | 1 | -1/+1 |
|
|
* | Add method to OrderedDict for repositioning keys to the ends. | Raymond Hettinger | 2010-09-06 | 1 | -0/+17 |
|
|
* | Consistency check for versionadded/changed directives. | Georg Brandl | 2010-08-17 | 1 | -1/+4 |
|
|
* | Issue #9507: Named tuple repr will now automatically display the right | Raymond Hettinger | 2010-08-08 | 1 | -1/+1 |
|
|
* | Improve readability of collections docs by adding a summary table | Raymond Hettinger | 2010-08-08 | 1 | -125/+132 |
|
|
* | Document how to change OrderedDict update order from first to last. | Raymond Hettinger | 2010-07-31 | 1 | -0/+12 |
|
|
* | nest method and attribute doc | Benjamin Peterson | 2010-07-18 | 1 | -15/+16 |
|
|
* | use classmethod | Benjamin Peterson | 2010-07-18 | 1 | -1/+1 |
|
|
* | Add usage notes for collections.Counter() | Raymond Hettinger | 2010-04-12 | 1 | -0/+27 |
|
|
* | Merged revisions 79733,79735 via svnmerge from | Ezio Melotti | 2010-04-04 | 1 | -1/+3 |
|
|
* | Add count() method to collections.deque(). | Raymond Hettinger | 2010-04-03 | 1 | -0/+6 |
|
|
* | Add a subtract() method to collections.Counter() | Raymond Hettinger | 2010-04-03 | 1 | -0/+11 |
|
|
* | Add nice docstrings to namedtuples. | Raymond Hettinger | 2010-04-02 | 1 | -2/+5 |
|
|
* | Merged revisions 77084 via svnmerge from | Georg Brandl | 2009-12-28 | 1 | -1/+1 |
|
|
* | Merged revisions 76904 via svnmerge from | Ezio Melotti | 2009-12-19 | 1 | -1/+1 |
|
|
* | Add a reverse() method to collections.deque(). | Raymond Hettinger | 2009-12-10 | 1 | -0/+5 |
|
|
* | Show example of how to make a sorted dictionary | Raymond Hettinger | 2009-11-10 | 1 | -0/+22 |
|
|
* | more list()s on dictviews | Ezio Melotti | 2009-09-13 | 1 | -1/+1 |
|
|
* | d.items() -> list(d.items()) in the examples | Ezio Melotti | 2009-09-12 | 1 | -4/+4 |
|
|
* | Merged revisions 74209 via svnmerge from | Georg Brandl | 2009-07-26 | 1 | -1/+1 |
|
|
* | Fix field name conflicts for named tuples. | Raymond Hettinger | 2009-05-27 | 1 | -6/+6 |
|
|
* | Fix-up moving average example. | Raymond Hettinger | 2009-05-22 | 1 | -3/+2 |
|
|
* | Note that ordered dictionaries work with reversed(). | Raymond Hettinger | 2009-05-19 | 1 | -0/+3 |
|
|
* | Remove surplus empty lines and convert more files to new optional arg style. | Georg Brandl | 2009-05-17 | 1 | -1/+0 |
|
|
* | Merged revisions 70768,71657,71721,71729,71794,71976,72036-72037,72079,72085,... | Benjamin Peterson | 2009-05-08 | 1 | -3/+3 |
|
|
* | Update signature style for optional arguments, part 3. | Georg Brandl | 2009-04-10 | 1 | -2/+2 |
|
|
* | Add note on using keyword arguments with OrderedDict. | Raymond Hettinger | 2009-04-09 | 1 | -0/+4 |
|
|
* | Update docs for namedtuple's renaming change. | Raymond Hettinger | 2009-04-02 | 1 | -1/+1 |
|
|
* | Improve examples for collections.deque() | Raymond Hettinger | 2009-03-31 | 1 | -25/+23 |
|
|
* | Add MutableSet example. | Raymond Hettinger | 2009-03-20 | 1 | -1/+6 |
|
|
* | Forward port r70470 and r70473 for OrderedDict to use a doubly linked list. | Raymond Hettinger | 2009-03-19 | 1 | -2/+10 |
|
|
* | Record version added as 3.1. | Raymond Hettinger | 2009-03-10 | 1 | -1/+1 |
|
|
* | For collections.deque() objects, expose the maxlen parameter as a read-only a... | Raymond Hettinger | 2009-03-10 | 1 | -0/+9 |
|
|
* | Fix markup. | Raymond Hettinger | 2009-03-03 | 1 | -1/+1 |
|
|
* | Add OrderedDict support to collections.namedtuple(). | Raymond Hettinger | 2009-03-02 | 1 | -5/+9 |
|
|
* | Fix versionchanged. | Raymond Hettinger | 2009-03-02 | 1 | -1/+1 |
|
|
* | fix versionadded | Benjamin Peterson | 2009-03-02 | 1 | -2/+2 |
|
|
* | PEP 372: OrderedDict() | Raymond Hettinger | 2009-03-02 | 1 | -1/+28 |
|
|
* | Sync-up 3.1 docs with 2.7 for collections.Counter(). | Raymond Hettinger | 2009-02-25 | 1 | -7/+6 |
|
|
* | Fix-up intro paragraph for collections docs. | Raymond Hettinger | 2009-02-17 | 1 | -7/+4 |
|
|
* | Clean-up named tuple docs. | Raymond Hettinger | 2009-02-11 | 1 | -4/+5 |
|
|
* | Merged revisions 69466,69480 via svnmerge from | Benjamin Peterson | 2009-02-10 | 1 | -1/+9 |
|
|
* | Minor doc fixes. | Raymond Hettinger | 2009-02-04 | 1 | -1/+1 |
|
|
* | Tweak the docs for Counter() objects. | Raymond Hettinger | 2009-02-04 | 1 | -4/+4 |
|
|
* | Correct docs for ABCs (MutableSequence was missing __setiem). Simplify the t... | Raymond Hettinger | 2009-01-29 | 1 | -15/+13 |
|
|
* | Forward port r69001: itertools.combinations_with_replacement(). | Raymond Hettinger | 2009-01-27 | 1 | -2/+1 |
|
|