summaryrefslogtreecommitdiffstats
path: root/Lib/collections.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* Add docstrings.Raymond Hettinger2009-04-081-0/+25
* Replace the localized min/max calls with normal if/elseRaymond Hettinger2009-04-041-4/+4
* Have namedtuple's field renamer assign names thatRaymond Hettinger2009-04-021-1/+1
* Separate initialization from clearing.Raymond Hettinger2009-03-251-3/+4
* Make imported name private and wrap long-line.Raymond Hettinger2009-03-231-3/+4
* Move initialization of root link to __init__.Raymond Hettinger2009-03-231-1/+2
* Add more comments. Improve variable names.Raymond Hettinger2009-03-231-32/+44
* Fix typoRaymond Hettinger2009-03-191-2/+2
* * Add implementation notes.Raymond Hettinger2009-03-191-13/+25
* * Add clearer comment to initialization code.Raymond Hettinger2009-03-191-3/+3
* Improve implementation with better underlying data structureRaymond Hettinger2009-03-191-14/+26
* Use mixin methods where possible. (2.7 only -- these don't all exist in 3.0)Raymond Hettinger2009-03-181-18/+7
* Backport 70140, 70141, 70143, and 70144.Raymond Hettinger2009-03-031-5/+9
* Minor simplification.Raymond Hettinger2009-03-031-1/+1
* Make the underlying data structure more private.Raymond Hettinger2009-03-031-15/+19
* Backport 70106: Add OrderedDict support to collections.namedtuple().Raymond Hettinger2009-03-031-5/+5
* Backport PEP 372: OrderedDict()Raymond Hettinger2009-03-031-3/+93
* Issue 1818: collections.namedtuple() to support automatic renaming of invalid...Raymond Hettinger2009-02-101-2/+12
* Issue 5021: doctest.testfile should set __name__Raymond Hettinger2009-01-271-1/+1
* Update comments and add an optimized path for Counter.update().Raymond Hettinger2009-01-221-3/+5
* Simplify explanation of multiset operations by removing restrictions on negat...Raymond Hettinger2009-01-211-2/+2
* Make merging easier by formattng comment blocks the same in Py3.1Raymond Hettinger2009-01-201-3/+5
* Add Counter() to __all__.Raymond Hettinger2009-01-201-1/+1
* Build-outs for Counter() class:Raymond Hettinger2009-01-201-8/+91
* Speed-up __repr__. Eliminate duplicate tests. Use a from-irmport.Raymond Hettinger2009-01-131-48/+3
* Fixup and simplify docstrings and doctests.Raymond Hettinger2009-01-131-16/+14
* Simplify Counter() API. Replace items keyword argumentRaymond Hettinger2009-01-131-22/+26
* Issue 1696199: Add collections.Counter().Raymond Hettinger2009-01-121-0/+201
* Fix namedtuple bug reported by Glenn Linderman. Template did not form correc...Raymond Hettinger2008-09-251-1/+1
* Issue3065: Fixed pickling of named tuples. Added tests.Raymond Hettinger2008-06-091-1/+3
* Issue 2903: Add __name__ in globals for namedtuple namespace.Raymond Hettinger2008-05-301-2/+3
* Neaten-up the named tuple docsRaymond Hettinger2008-01-101-1/+1
* Clarify how to add a field to a named tuple.Raymond Hettinger2008-01-101-0/+3
* Examples for named tuple subclassing should include __slots__Raymond Hettinger2008-01-101-1/+3