index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
test
/
test_collections.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix whitespace
Raymond Hettinger
2011-11-05
1
-1/+1
*
Merge
Raymond Hettinger
2011-11-05
1
-0/+6
|
\
|
*
Improve Counter.__repr__() to not fail with unorderable values
Raymond Hettinger
2011-11-05
1
-0/+6
*
|
Issue #13121: Support in-place math operators for collections.Counter().
Raymond Hettinger
2011-10-19
1
-0/+21
*
|
Add support for unary plus and unary minus to collections.Counter()
Raymond Hettinger
2011-08-09
1
-0/+5
*
|
merge
Raymond Hettinger
2011-06-03
1
-1/+1
|
\
\
|
|
/
|
*
Fix named tuples to work with vars().
Raymond Hettinger
2011-06-03
1
-1/+1
|
*
Backport 3.3 fixes and cleans ups.
Raymond Hettinger
2011-05-02
1
-11/+19
|
*
TestChainMap was not previously used. Minor corrections applied.
Ćukasz Langa
2011-04-29
1
-8/+8
*
|
Fix minor subclassing issue with collections.Counter
Raymond Hettinger
2011-04-15
1
-0/+9
|
\
\
|
|
/
|
*
Fix minor subclassing issue with collections.Counter
Raymond Hettinger
2011-04-15
1
-0/+9
|
|
\
|
|
*
Fix minor subclassing issue with collections.Counter
Raymond Hettinger
2011-04-15
1
-0/+9
|
|
*
Backport r87613 to make OrderedDict subclassing match dict subclassing.
Raymond Hettinger
2011-01-04
1
-0/+28
|
|
*
Merged revisions 86857 via svnmerge from
Alexander Belopolsky
2010-11-30
1
-1/+8
|
|
*
Merged revisions 86596 via svnmerge from
Ezio Melotti
2010-11-21
1
-11/+11
|
|
*
Issue #9826: Handle recursive repr in collections.OrderedDict.
Raymond Hettinger
2010-09-12
1
-0/+7
|
|
*
Merged revisions 84301 via svnmerge from
Daniel Stutzbach
2010-08-24
1
-0/+15
|
|
*
Issue #9214: Fix set operations on KeysView and ItemsView.
Raymond Hettinger
2010-08-22
1
-1/+26
|
|
*
Merged revisions 82821 via svnmerge from
Mark Dickinson
2010-07-11
1
-0/+13
|
|
*
Merged revisions 81417 via svnmerge from
Benjamin Peterson
2010-05-21
1
-1/+48
|
|
*
Merged revisions 73715 via svnmerge from
Georg Brandl
2009-08-13
1
-72/+72
|
*
|
Add tests for the collections helper class and sync-up with py3k branch.
Raymond Hettinger
2011-02-23
1
-2/+112
*
|
|
Remove test_importable(). Couldn't see how to make this reliable across all ...
Raymond Hettinger
2011-03-24
1
-25/+0
*
|
|
Isolate the test_source() test in test_collections
Raymond Hettinger
2011-03-24
1
-5/+8
*
|
|
Add tests for _source to importable and exec'able.
Raymond Hettinger
2011-03-24
1
-0/+34
*
|
|
Expose the namedtuple source with a _source attribute.
Raymond Hettinger
2011-03-23
1
-0/+1
*
|
|
Mentioned new clear() method of MutableSequence in its doc, and added unit te...
Eli Bendersky
2011-03-04
1
-0/+38
*
|
|
Add __bool__ method. Add tests. Fix-up broken test.
Raymond Hettinger
2011-02-26
1
-8/+14
*
|
|
Issue #11297: Add collections.ChainMap()
Raymond Hettinger
2011-02-26
1
-2/+2
*
|
|
Add tests for the _ChainMap helper class.
Raymond Hettinger
2011-02-23
1
-0/+110
*
|
|
Fix imports from collections.abc
Raymond Hettinger
2011-02-23
1
-8/+9
|
/
/
*
|
Make C helper function more closely match the pure python version, and add te...
Raymond Hettinger
2011-01-03
1
-1/+14
*
|
Fix OrderedDic.pop() to work for subclasses that define __missing__().
Raymond Hettinger
2011-01-01
1
-0/+15
*
|
Make it easier to extend OrderedDict without breaking it.
Raymond Hettinger
2011-01-01
1
-0/+8
*
|
Fix OrderedDict.setdefault() to work for subclasses that define __missing__().
Raymond Hettinger
2010-12-31
1
-0/+6
*
|
Issue #10565: Iterator ABC should require both __next__ and __iter__.
Raymond Hettinger
2010-11-29
1
-2/+8
*
|
#9424: Replace deprecated assert* methods in the Python test suite.
Ezio Melotti
2010-11-20
1
-7/+7
*
|
Issue 9865: add __sizeof__ to OrderedDict.
Raymond Hettinger
2010-09-16
1
-0/+6
*
|
Issue #9826: Handle recursive repr in collections.OrderedDict.
Raymond Hettinger
2010-09-12
1
-0/+7
*
|
Add method to OrderedDict for repositioning keys to the ends.
Raymond Hettinger
2010-09-06
1
-1/+13
*
|
Issue 8750: Fixed MutableSet's methods to correctly handle reflexive operatio...
Daniel Stutzbach
2010-08-24
1
-0/+15
*
|
Issue #9214: Fix set operations on KeysView and ItemsView.
Raymond Hettinger
2010-08-22
1
-1/+26
*
|
Issue #9507: Named tuple repr will now automatically display the right
Raymond Hettinger
2010-08-08
1
-0/+10
*
|
Issue #9137: Fix issue in MutableMapping.update, which incorrectly
Mark Dickinson
2010-07-11
1
-0/+13
*
|
Merged revisions 81414 via svnmerge from
Benjamin Peterson
2010-05-21
1
-1/+48
*
|
Add a subtract() method to collections.Counter()
Raymond Hettinger
2010-04-03
1
-0/+10
*
|
Merged revisions 78093 via svnmerge from
Georg Brandl
2010-03-14
1
-1/+0
*
|
Backport the tests only.
Florent Xicluna
2010-03-08
1
-0/+17
*
|
Merged revisions 78351 via svnmerge from
R. David Murray
2010-02-24
1
-1/+7
*
|
Merged revisions 77727 via svnmerge from
Ezio Melotti
2010-01-24
1
-27/+27
[next]