summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_collections.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #17900: Allowed pickling of recursive OrderedDicts. Decreased pickledSerhiy Storchaka2013-05-211-2/+11
* Undo the deprecation of _asdict().Raymond Hettinger2013-05-181-5/+2
* Deprecate nametuple._asdict()Raymond Hettinger2013-05-181-2/+5
* mergeRaymond Hettinger2013-05-031-0/+1
|\
| * Issue #15535: Fix pickling of named tuples.Raymond Hettinger2013-05-031-0/+1
* | Closes #16613: Added optional mapping argument to ChainMap.new_child.Vinay Sajip2013-01-111-0/+32
|/
* Merge issue #16373: Prevent infinite recursion for ABC Set class operations.Andrew Svetlov2012-11-011-0/+33
|\
| * Issue #16373: Prevent infinite recursion for ABC Set class operations.Andrew Svetlov2012-11-011-0/+33
* | Fix whitespaceRaymond Hettinger2011-11-051-1/+1
* | MergeRaymond Hettinger2011-11-051-0/+6
|\ \ | |/
| * Improve Counter.__repr__() to not fail with unorderable valuesRaymond Hettinger2011-11-051-0/+6
* | Issue #13121: Support in-place math operators for collections.Counter().Raymond Hettinger2011-10-191-0/+21
* | Add support for unary plus and unary minus to collections.Counter()Raymond Hettinger2011-08-091-0/+5
* | mergeRaymond Hettinger2011-06-031-1/+1
|\ \ | |/
| * Fix named tuples to work with vars().Raymond Hettinger2011-06-031-1/+1
| * Backport 3.3 fixes and cleans ups.Raymond Hettinger2011-05-021-11/+19
| * TestChainMap was not previously used. Minor corrections applied.Ɓukasz Langa2011-04-291-8/+8
* | Fix minor subclassing issue with collections.CounterRaymond Hettinger2011-04-151-0/+9
|\ \ | |/
| * Fix minor subclassing issue with collections.CounterRaymond Hettinger2011-04-151-0/+9
| |\
| | * Fix minor subclassing issue with collections.CounterRaymond Hettinger2011-04-151-0/+9
| | * Backport r87613 to make OrderedDict subclassing match dict subclassing.Raymond Hettinger2011-01-041-0/+28
| | * Merged revisions 86857 via svnmerge fromAlexander Belopolsky2010-11-301-1/+8
| | * Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-11/+11
| | * Issue #9826: Handle recursive repr in collections.OrderedDict.Raymond Hettinger2010-09-121-0/+7
| | * Merged revisions 84301 via svnmerge fromDaniel Stutzbach2010-08-241-0/+15
| | * Issue #9214: Fix set operations on KeysView and ItemsView.Raymond Hettinger2010-08-221-1/+26
| | * Merged revisions 82821 via svnmerge fromMark Dickinson2010-07-111-0/+13
| | * Merged revisions 81417 via svnmerge fromBenjamin Peterson2010-05-211-1/+48
| | * Merged revisions 73715 via svnmerge fromGeorg Brandl2009-08-131-72/+72
| * | Add tests for the collections helper class and sync-up with py3k branch.Raymond Hettinger2011-02-231-2/+112
* | | Remove test_importable(). Couldn't see how to make this reliable across all ...Raymond Hettinger2011-03-241-25/+0
* | | Isolate the test_source() test in test_collectionsRaymond Hettinger2011-03-241-5/+8
* | | Add tests for _source to importable and exec'able.Raymond Hettinger2011-03-241-0/+34
* | | Expose the namedtuple source with a _source attribute.Raymond Hettinger2011-03-231-0/+1
* | | Mentioned new clear() method of MutableSequence in its doc, and added unit te...Eli Bendersky2011-03-041-0/+38
* | | Add __bool__ method. Add tests. Fix-up broken test.Raymond Hettinger2011-02-261-8/+14
* | | Issue #11297: Add collections.ChainMap()Raymond Hettinger2011-02-261-2/+2
* | | Add tests for the _ChainMap helper class.Raymond Hettinger2011-02-231-0/+110
* | | Fix imports from collections.abcRaymond Hettinger2011-02-231-8/+9
|/ /
* | Make C helper function more closely match the pure python version, and add te...Raymond Hettinger2011-01-031-1/+14
* | Fix OrderedDic.pop() to work for subclasses that define __missing__().Raymond Hettinger2011-01-011-0/+15
* | Make it easier to extend OrderedDict without breaking it.Raymond Hettinger2011-01-011-0/+8
* | Fix OrderedDict.setdefault() to work for subclasses that define __missing__().Raymond Hettinger2010-12-311-0/+6
* | Issue #10565: Iterator ABC should require both __next__ and __iter__.Raymond Hettinger2010-11-291-2/+8
* | #9424: Replace deprecated assert* methods in the Python test suite.Ezio Melotti2010-11-201-7/+7
* | Issue 9865: add __sizeof__ to OrderedDict.Raymond Hettinger2010-09-161-0/+6
* | Issue #9826: Handle recursive repr in collections.OrderedDict.Raymond Hettinger2010-09-121-0/+7
* | Add method to OrderedDict for repositioning keys to the ends.Raymond Hettinger2010-09-061-1/+13
* | Issue 8750: Fixed MutableSet's methods to correctly handle reflexive operatio...Daniel Stutzbach2010-08-241-0/+15
* | Issue #9214: Fix set operations on KeysView and ItemsView.Raymond Hettinger2010-08-221-1/+26