summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.rst
Commit message (Collapse)AuthorAgeFilesLines
* Punctuation typos.Georg Brandl2011-02-031-2/+2
|
* Punctuation typo.Raymond Hettinger2011-02-021-1/+1
|
* More source links.Raymond Hettinger2011-01-271-1/+1
|
* Separate source link from main text.Raymond Hettinger2011-01-101-0/+2
|
* Move source links to consistent location and remove wordy, big yellow boxes.Raymond Hettinger2011-01-101-5/+2
|
* Revert r87823 which moved the source link to the wrong section.Raymond Hettinger2011-01-071-3/+5
|
* Put those source links togetherAntoine Pitrou2011-01-071-5/+3
|
* Fix typo.Georg Brandl2010-12-181-1/+1
|
* Add some internal links.Raymond Hettinger2010-11-301-1/+2
|
* Issue 6722: Improve the namedtuple examples.Raymond Hettinger2010-11-211-1/+5
|
* Provide links to Python source where the code is short, readable andÉric Araujo2010-11-161-0/+8
| | | | | informative adjunct to the docs. Forward-port of Raymond's r86225 and r86245 using the new source reST role added in #10334.
* Tweak example to make clear the argument is a boolean, not any integer.Éric Araujo2010-11-061-1/+1
| | | | With Raymond’s approval.
* Add method to OrderedDict for repositioning keys to the ends.Raymond Hettinger2010-09-061-0/+17
|
* Consistency check for versionadded/changed directives.Georg Brandl2010-08-171-1/+4
|
* Issue #9507: Named tuple repr will now automatically display the rightRaymond Hettinger2010-08-081-1/+1
| | | | name in a tuple subclass.
* Improve readability of collections docs by adding a summary tableRaymond Hettinger2010-08-081-125/+132
| | | | at the top and by list concrete classes before abstract base classes.
* Document how to change OrderedDict update order from first to last.Raymond Hettinger2010-07-311-0/+12
|
* nest method and attribute docBenjamin Peterson2010-07-181-15/+16
|
* use classmethodBenjamin Peterson2010-07-181-1/+1
|
* Add usage notes for collections.Counter()Raymond Hettinger2010-04-121-0/+27
|
* Merged revisions 79733,79735 via svnmerge fromEzio Melotti2010-04-041-1/+3
| | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r79733 | ezio.melotti | 2010-04-04 09:41:27 +0300 (Sun, 04 Apr 2010) | 1 line Add a versionadded to Counter.subtract() doc. ........ r79735 | ezio.melotti | 2010-04-04 09:50:58 +0300 (Sun, 04 Apr 2010) | 1 line Revert 79733 - Counter is new in 2.7, the versionadded is not necessary - and fix a typo. ........
* Add count() method to collections.deque().Raymond Hettinger2010-04-031-0/+6
|
* Add a subtract() method to collections.Counter()Raymond Hettinger2010-04-031-0/+11
|
* Add nice docstrings to namedtuples.Raymond Hettinger2010-04-021-2/+5
|
* Merged revisions 77084 via svnmerge fromGeorg Brandl2009-12-281-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r77084 | georg.brandl | 2009-12-28 09:01:59 +0100 (Mo, 28 Dez 2009) | 1 line #7586: fix typo. ........
* Merged revisions 76904 via svnmerge fromEzio Melotti2009-12-191-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r76904 | ezio.melotti | 2009-12-20 00:41:49 +0200 (Sun, 20 Dec 2009) | 1 line #7388: "python".capitalize() in the Doc ........
* Add a reverse() method to collections.deque().Raymond Hettinger2009-12-101-0/+5
|
* Show example of how to make a sorted dictionaryRaymond Hettinger2009-11-101-0/+22
|
* more list()s on dictviewsEzio Melotti2009-09-131-1/+1
|
* d.items() -> list(d.items()) in the examplesEzio Melotti2009-09-121-4/+4
|
* Merged revisions 74209 via svnmerge fromGeorg Brandl2009-07-261-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r74209 | georg.brandl | 2009-07-26 16:37:28 +0200 (So, 26 Jul 2009) | 1 line builtin -> built-in. ........
* Fix field name conflicts for named tuples.Raymond Hettinger2009-05-271-6/+6
|
* Fix-up moving average example.Raymond Hettinger2009-05-221-3/+2
|
* Note that ordered dictionaries work with reversed().Raymond Hettinger2009-05-191-0/+3
|
* Remove surplus empty lines and convert more files to new optional arg style.Georg Brandl2009-05-171-1/+0
|
* Merged revisions ↵Benjamin Peterson2009-05-081-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 70768,71657,71721,71729,71794,71976,72036-72037,72079,72085,72131-72134,72191,72197-72198,72219,72221,72225,72303,72434,72467,72476 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r70768 | andrew.kuchling | 2009-03-30 17:29:15 -0500 (Mon, 30 Mar 2009) | 1 line Typo fixes ........ r71657 | vinay.sajip | 2009-04-16 14:07:37 -0500 (Thu, 16 Apr 2009) | 1 line Issue #5768: Change to Unicode output logic and test case for same. ........ r71721 | benjamin.peterson | 2009-04-18 14:26:19 -0500 (Sat, 18 Apr 2009) | 1 line fix a few nits in unittest.py #5771 ........ r71729 | benjamin.peterson | 2009-04-18 16:03:10 -0500 (Sat, 18 Apr 2009) | 1 line move test to a more appropiate one ........ r71794 | vinay.sajip | 2009-04-22 07:10:47 -0500 (Wed, 22 Apr 2009) | 2 lines Issue #5170: Fixed regression caused when fixing #5768. ........ r71976 | mark.dickinson | 2009-04-26 14:54:55 -0500 (Sun, 26 Apr 2009) | 2 lines Fix typo in function name ........ r72036 | georg.brandl | 2009-04-27 12:04:23 -0500 (Mon, 27 Apr 2009) | 1 line #5848: small unittest doc patch. ........ r72037 | georg.brandl | 2009-04-27 12:09:53 -0500 (Mon, 27 Apr 2009) | 1 line #5840: dont claim we dont support TLS. ........ r72079 | r.david.murray | 2009-04-28 14:02:55 -0500 (Tue, 28 Apr 2009) | 2 lines Remove spurious 'u'. ........ r72085 | georg.brandl | 2009-04-28 16:48:35 -0500 (Tue, 28 Apr 2009) | 1 line Make the doctests in the docs pass, except for those in the turtle module. ........ r72131 | benjamin.peterson | 2009-04-29 17:43:35 -0500 (Wed, 29 Apr 2009) | 1 line fix test_shutil on ZFS #5676 ........ r72132 | georg.brandl | 2009-04-29 17:44:07 -0500 (Wed, 29 Apr 2009) | 1 line #5878: fix repr of re object. ........ r72133 | benjamin.peterson | 2009-04-29 17:44:15 -0500 (Wed, 29 Apr 2009) | 1 line make sure mode is removable while cleaning up test droppings ........ r72134 | benjamin.peterson | 2009-04-29 19:06:33 -0500 (Wed, 29 Apr 2009) | 1 line make sure to close file ........ r72191 | michael.foord | 2009-05-02 06:43:06 -0500 (Sat, 02 May 2009) | 9 lines Adds an exit parameter to unittest.main(). If False main no longer calls sys.exit. Closes issue 3379. Michael Foord ........ r72197 | benjamin.peterson | 2009-05-02 11:24:37 -0500 (Sat, 02 May 2009) | 1 line don't let sys.argv be used in the tests ........ r72198 | andrew.kuchling | 2009-05-02 12:12:15 -0500 (Sat, 02 May 2009) | 1 line Add items ........ r72219 | michael.foord | 2009-05-02 15:15:05 -0500 (Sat, 02 May 2009) | 8 lines Add addCleanup and doCleanups to unittest.TestCase. Closes issue 5679. Michael Foord ........ r72221 | benjamin.peterson | 2009-05-02 15:26:53 -0500 (Sat, 02 May 2009) | 1 line add myself ........ r72225 | michael.foord | 2009-05-02 17:43:34 -0500 (Sat, 02 May 2009) | 1 line ........ r72303 | benjamin.peterson | 2009-05-04 19:55:24 -0500 (Mon, 04 May 2009) | 1 line using sys._getframe(x), where x > 0 doesnt' work on IronPython ........ r72434 | r.david.murray | 2009-05-07 13:09:58 -0500 (Thu, 07 May 2009) | 2 lines Pre-opened test file needs to be opened in binary mode. ........ r72467 | georg.brandl | 2009-05-08 07:17:34 -0500 (Fri, 08 May 2009) | 1 line Fix name. ........ r72476 | thomas.heller | 2009-05-08 15:09:40 -0500 (Fri, 08 May 2009) | 4 lines Add a file that contains diffs between offical libffi files and the files in this repository. Should make it easier to merge new libffi versions. ........
* Update signature style for optional arguments, part 3.Georg Brandl2009-04-101-2/+2
|
* Add note on using keyword arguments with OrderedDict.Raymond Hettinger2009-04-091-0/+4
|
* Update docs for namedtuple's renaming change.Raymond Hettinger2009-04-021-1/+1
|
* Improve examples for collections.deque()Raymond Hettinger2009-03-311-25/+23
|
* Add MutableSet example.Raymond Hettinger2009-03-201-1/+6
|
* Forward port r70470 and r70473 for OrderedDict to use a doubly linked list.Raymond Hettinger2009-03-191-2/+10
|
* Record version added as 3.1.Raymond Hettinger2009-03-101-1/+1
|
* For collections.deque() objects, expose the maxlen parameter as a read-only ↵Raymond Hettinger2009-03-101-0/+9
| | | | attribute.
* Fix markup.Raymond Hettinger2009-03-031-1/+1
|
* Add OrderedDict support to collections.namedtuple().Raymond Hettinger2009-03-021-5/+9
|
* Fix versionchanged.Raymond Hettinger2009-03-021-1/+1
|
* fix versionaddedBenjamin Peterson2009-03-021-2/+2
|
* PEP 372: OrderedDict()Raymond Hettinger2009-03-021-1/+28
|
* Sync-up 3.1 docs with 2.7 for collections.Counter().Raymond Hettinger2009-02-251-7/+6
|