summaryrefslogtreecommitdiff
path: root/Lib/collections.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-261-1/+1
* Fix non-ascii characterRaymond Hettinger2015-11-231-1/+1
* Add a missing docstringRaymond Hettinger2015-11-231-0/+12
* Issue #22609: Constructors and update methods of mapping classes in theSerhiy Storchaka2014-11-271-5/+33
* Issue 21832: Require named tuple inputs to be exact stringsRaymond Hettinger2014-06-241-0/+3
* #18466: fix more typos. Patch by FĂ©vry Thibault.Ezio Melotti2013-08-171-1/+1
* Issue #18015: Fix unpickling of 2.7.3 and 2.7.4 namedtuples.Raymond Hettinger2013-05-271-0/+6
* Issue #15535: Fix regression in pickling of named tuples.Raymond Hettinger2013-05-031-2/+0
* Hold key reference until the links have updated.Raymond Hettinger2013-03-231-1/+1
* Minor fixups. Early-out for equality test. Inline PREV/NEXT constants.Raymond Hettinger2012-12-011-16/+15
* Remove steps no longer needed once __del__ was removedRaymond Hettinger2012-11-201-2/+0
* Fit nit: the return got dropped from an earlier check-inRaymond Hettinger2012-11-201-1/+1
* Minor formatting fix=upRaymond Hettinger2012-06-091-1/+1
* Wrap fat lines and improve some variable names.Raymond Hettinger2012-06-091-17/+20
* Code cleanupsRaymond Hettinger2012-06-081-46/+73
* Fix named tuples to work with vars().Raymond Hettinger2011-06-021-0/+1
* Other minor clean-ups.Raymond Hettinger2011-04-241-8/+15
* Remove unused branch in the clear() method. Minor comment edits.Raymond Hettinger2011-04-241-18/+15
* Minor code clean-up.Raymond Hettinger2011-04-231-1/+2
* Remove unused importsRaymond Hettinger2011-04-231-3/+3
* Minor code simplification.Raymond Hettinger2011-04-231-15/+15
* Minor code simplification.Raymond Hettinger2011-04-231-4/+2
* Cleanups to remove dependencies and add docstrings.Raymond Hettinger2011-04-221-38/+49
* Minor text rearrangement.Raymond Hettinger2011-04-201-10/+10
* Issue #11875: Alter the previous fix to work better with subclassesRaymond Hettinger2011-04-191-1/+1
* Use a generic class lookup.Raymond Hettinger2011-04-191-1/+1
* Issue 11875: Keep OrderedDict's __reduce__ from temporarily mutating the object.Raymond Hettinger2011-04-191-3/+2
* Rework multiset methods to use less memory and to make fewer calls to __hash__.Raymond Hettinger2011-04-171-12/+19
* Fix minor subclassing issue with collections.CounterRaymond Hettinger2011-04-151-2/+2
* Backport r87672 and r87615, improving tests, using super() instead of direct ...Raymond Hettinger2011-01-031-11/+15
* Raymond-Hettingers-MacBook-Pro:py27 raymondhettinger$ cat svn-commit.tmpRaymond Hettinger2011-01-021-5/+21
* Backport part of r86217: Fix issues when building without threadsAmaury Forgeot d'Arc2010-11-091-1/+1
* Issue 9826: OrderedDict.__repr__ did not play well with self-referencing dicts.Raymond Hettinger2010-09-131-0/+27
* Issue #9825: Remove __del__() from OrderedDict.Raymond Hettinger2010-09-121-3/+0
* Issue #9626: Fix views in collections.OrderedDict().Raymond Hettinger2010-08-171-0/+12
* Minor factoringRaymond Hettinger2010-04-111-2/+1
* Add subtract() method to collections.Counter() objects.Raymond Hettinger2010-04-031-0/+28
* Factor-out constant expressionsRaymond Hettinger2010-04-031-14/+6
* Improve clear() method. Keeps key/value refcnts >= 1 until final dict.clear(...Raymond Hettinger2010-04-031-2/+8
* Clear cyclical references in list based OrderedDict.Raymond Hettinger2010-04-031-3/+11
* Improve code clarity a bit.Raymond Hettinger2010-03-091-5/+10
* Have links in OrderedDicts be native Python lists insteadRaymond Hettinger2010-03-091-28/+19
* Add nicer docstrings to namedtuples().Raymond Hettinger2010-03-091-1/+4
* Remove unused import.Georg Brandl2010-02-061-1/+1
* Issue 6370: Performance issue with collections.Counter().Raymond Hettinger2009-06-291-2/+4
* Revert r73401 per Raymond Hettinger's request.Alexandre Vassalotti2009-06-121-6/+4
* Make pickling of OrderedDict instances more efficient.Alexandre Vassalotti2009-06-121-4/+6
* Fix field name conflicts for named tuples.Raymond Hettinger2009-05-271-7/+7
* using sys._getframe(x), where x > 0 doesnt' work on IronPythonBenjamin Peterson2009-05-051-2/+5
* Minor factoring.Raymond Hettinger2009-04-081-1/+1