| Commit message (Expand) | Author | Age | Files | Lines |
... | |
| | * | Document how to change OrderedDict update order from first to last. | Raymond Hettinger | 2010-07-31 | 1 | -0/+12 |
|
|
| | * | Merged revisions 82952,82954 via svnmerge from | Benjamin Peterson | 2010-07-18 | 1 | -16/+17 |
|
|
| | * | Add usage notes for collections.Counter() | Raymond Hettinger | 2010-04-12 | 1 | -0/+27 |
|
|
| | * | Merged revisions 76906 via svnmerge from | Ezio Melotti | 2009-12-19 | 1 | -1/+1 |
|
|
| | * | Show example of how to make a sorted dictionary | Raymond Hettinger | 2009-11-10 | 1 | -0/+22 |
|
|
| | * | Merged revisions 74762 via svnmerge from | Ezio Melotti | 2009-09-13 | 1 | -1/+1 |
|
|
| | * | Merged revisions 74748 via svnmerge from | Ezio Melotti | 2009-09-12 | 1 | -4/+4 |
|
|
| | * | Merged revisions 73941-73943,74076,74094,74186,74211-74214,74247,74254,74262,... | Georg Brandl | 2009-08-13 | 1 | -1/+1 |
|
|
* | | | Forward port doc update. | Raymond Hettinger | 2011-03-16 | 1 | -9/+9 |
|\ \ \
| |/ / |
|
| * | | Emphasize the ['x', 'y'] option for listing field names. Remove PS2 prompts ... | Raymond Hettinger | 2011-03-16 | 1 | -9/+9 |
|
|
* | | | Use with statement where it improves the documentation (closes #10461) | Éric Araujo | 2011-03-11 | 1 | -1/+2 |
|
|
* | | | Make Py3.x style "import builtins" | Raymond Hettinger | 2011-02-26 | 1 | -2/+2 |
|
|
* | | | Issue #11297: Add collections.ChainMap() | Raymond Hettinger | 2011-02-26 | 1 | -0/+114 |
|
|
* | | | Issue #11085: Moved collections abstract base classes into a separate module | Raymond Hettinger | 2011-02-22 | 1 | -122/+5 |
|/ / |
|
* | | Punctuation typos. | Georg Brandl | 2011-02-03 | 1 | -2/+2 |
|
|
* | | Punctuation typo. | Raymond Hettinger | 2011-02-02 | 1 | -1/+1 |
|
|
* | | More source links. | Raymond Hettinger | 2011-01-27 | 1 | -1/+1 |
|
|
* | | Separate source link from main text. | Raymond Hettinger | 2011-01-10 | 1 | -0/+2 |
|
|
* | | Move source links to consistent location and remove wordy, big yellow boxes. | Raymond Hettinger | 2011-01-10 | 1 | -5/+2 |
|
|
* | | Revert r87823 which moved the source link to the wrong section. | Raymond Hettinger | 2011-01-07 | 1 | -3/+5 |
|
|
* | | Put those source links together | Antoine Pitrou | 2011-01-07 | 1 | -5/+3 |
|
|
* | | 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 |
|
|