summaryrefslogtreecommitdiff
path: root/Lib/test/test_collections.py
Commit message (Expand)AuthorAgeFilesLines
* Fix typos mostly in comments, docs and test names (GH-15209)Min ho Kim2019-08-301-1/+1
* bpo-37685: Use singletons ALWAYS_EQ and NEVER_EQ in more tests. (GH-15167)Serhiy Storchaka2019-08-081-4/+1
* Fix typos in comments, docs and test names (#15018)Min ho Kim2019-07-301-2/+2
* Remove unused imports in tests (GH-14518)Victor Stinner2019-07-011-1/+1
* bpo-27141: Fix collections.UserList and UserDict shallow copy. (GH-4094)Bar Harel2019-05-191-0/+24
* bpo-36321: Fix misspelled attribute in namedtuple() (GH-12375)Raymond Hettinger2019-03-181-6/+6
* bpo-36068: Make _tuplegetter objects serializable (GH-11981)Joe Jevnik2019-02-211-1/+10
* bpo-36057 Update docs and tests for ordering in collections.Counter [no behav...Raymond Hettinger2019-02-211-0/+57
* bpo-36060: Document how collections.ChainMap() determines iteration order (GH...Raymond Hettinger2019-02-211-0/+14
* bpo-32492: Tweak _collections._tuplegetter. (GH-11367)Serhiy Storchaka2018-12-311-18/+55
* bpo-32492: 1.6x speed up in namedtuple attribute access using C fast-path (#1...Pablo Galindo2018-12-301-0/+8
* bpo-35202: Remove unused imports in Lib directory. (GH-10446)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-101-2/+0
* bpo-33462: Add __reversed__ to dict and dict views (GH-6827)Rémi Lapeyre2018-11-061-13/+12
* bpo-34427: Fix infinite loop when calling MutableSequence.extend() on self (G...Naris R2018-08-301-0/+12
* bpo-32792: Preserve mapping order in ChainMap() (GH-5586)Raymond Hettinger2018-02-111-0/+17
* bpo-32467: Let collections.abc.ValuesView inherit from Collection (#5152)Raymond Hettinger2018-01-111-2/+2
* bpo-32320: Add default value support to collections.namedtuple() (#4859)Raymond Hettinger2018-01-101-0/+51
* bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike2017-12-141-3/+3
* bpo-31709: Drop support for asynchronous __aiter__. (#3903)Yury Selivanov2017-10-061-2/+2
* bpo-28638: Optimize namedtuple() creation time by minimizing use of exec() (#...Raymond Hettinger2017-09-101-22/+32
* bpo-29919: Remove unused imports found by pyflakes (#137)Victor Stinner2017-03-271-1/+0
* bpo-26915: Test identity first in membership operation in index() and count()...Xiang Zhang2017-03-081-4/+13
* Issue #18896: Python function can now have more than 255 parameters.Serhiy Storchaka2016-12-161-2/+1
* Issue #28720: Add collections.abc.AsyncGenerator.Yury Selivanov2016-11-161-1/+83
* Issue #17941: Add a *module* parameter to collections.namedtuple()Raymond Hettinger2016-09-121-0/+4
* Issue 27598: Add Collections to collections.abc.Guido van Rossum2016-08-231-1/+89
* Anti-registration of various ABC methods.Guido van Rossum2016-08-181-7/+53
* Issue #25628: Make namedtuple "rename" and "verbose" parameters keyword-only.Raymond Hettinger2016-08-161-0/+12
* Issue #27626: Merge spelling fixes from 3.5Martin Panter2016-07-281-1/+1
|\
| * Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-281-1/+1
* | Issue 26915: Add identity checks to the collections ABC __contains__ methods.Raymond Hettinger2016-05-051-1/+21
* | Add collections.Reversible. Patch by Ivan Levkivskyi. Fixes issue #25987.Guido van Rossum2016-04-041-3/+28
|/
* Issue #25616: Tests for OrderedDict are extracted from test_collectionsSerhiy Storchaka2015-11-251-691/+12
|\
| * Issue #25616: Tests for OrderedDict are extracted from test_collectionsSerhiy Storchaka2015-11-251-307/+13
* | Issue #25449: Fixed a crash and leaking NULL in repr() of OrderedDict thatSerhiy Storchaka2015-11-041-0/+54
* | Issue #25449: Iterating OrderedDict with keys with unstable hash now raisesSerhiy Storchaka2015-11-041-61/+83
* | Issue #25395: Fixed crash when highly nested OrderedDict structures wereSerhiy Storchaka2015-11-011-0/+24
* | Issue #25406: Fixed a bug in C implementation of OrderedDict.move_to_end()Serhiy Storchaka2015-10-141-0/+14
* | mergeRaymond Hettinger2015-08-301-1/+11
|\ \ | |/
| * Issue #24931: Resolve __dict__ conflict in namedtuple subclasses.Raymond Hettinger2015-08-301-1/+11
* | Issue #24667: Resize odict in all cases that the underlying dict resizes.Eric Snow2015-08-071-0/+23
* | Issue #24400: Resurrect inspect.isawaitable()Yury Selivanov2015-07-031-4/+8
* | Issue #24369: Defend against key-changes during iteration.Eric Snow2015-06-041-0/+17
* | Issue #24368: Support keyword arguments in OrderedDict methods.Eric Snow2015-06-021-1/+15
* | Issue #24359: Check for changed OrderedDict size during iteration.Eric Snow2015-06-011-4/+0
* | Issue #24348: Drop superfluous increfs/decrefs.Eric Snow2015-06-011-0/+12
* | Issue #24347: Set KeyError if PyDict_GetItemWithError returns NULL.Eric Snow2015-06-011-0/+18
* | Issue #16991: Do not return None from OrderedDict.__reversed__.Eric Snow2015-05-301-1/+13
* | Reverting my previous commit.Yury Selivanov2015-05-301-7/+0
* | Issue #16991: Add a C implementation of collections.OrderedDict.Eric Snow2015-05-291-18/+184