summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_collections.py
Commit message (Expand)AuthorAgeFilesLines
* gh-116303: Skip tests if C recursion limit is unavailable (GH-117368)Erlend E. Aasland2024-04-081-1/+1
* gh-114894: add array.array.clear() method (#114919)Mike Zimin2024-02-101-0/+2
* gh-110275: Named tuple's __replace__() now raises TypeError for invalid argum...Serhiy Storchaka2023-12-041-5/+1
* gh-91896: Revert some very noisy DeprecationWarnings for `ByteString` (#104424)Alex Waygood2023-05-131-9/+1
* gh-91896: Improve visibility of `ByteString` deprecation warnings (#104294)Alex Waygood2023-05-121-1/+9
* gh-91896: Deprecate collections.abc.ByteString (#102096)Shantanu2023-05-041-4/+15
* gh-102500: Implement PEP 688 (#102521)Jelle Zijlstra2023-05-041-1/+10
* GH-103805: Lib test f541 linting issue fix (#103812)Rodolfo M. Pereira2023-04-241-1/+1
* gh-98513: Test abstract methods of some `collections` types (#98516)Nikita Sobolev2022-11-081-0/+5
* gh-98512: Add more tests for `ValuesView` (#98515)Nikita Sobolev2022-11-031-0/+3
* GH-91079: Decouple C stack overflow checks from Python recursion checks. (GH-...Mark Shannon2022-10-051-1/+1
* bpo-39264: Fix UserDict.get() to account for __missing__() (GH-17910)Bar Harel2022-05-101-0/+8
* gh-92107: Add tests that subscription works on arbitrary named tuple types (G...Serhiy Storchaka2022-05-041-0/+12
* bpo-46387: test all pickle protos in `test_field_descriptor` in `test_collect...Nikita Sobolev2022-01-161-6/+8
* bpo-45859: Mark test_field_descriptor in test_collections as CPython-only (GH...Carl Friedrich Bolz-Tereick2021-11-221-0/+1
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-061-1/+1
* bpo-45229: Use doctest.DocTestSuite instead of run_doctest (GH-28468)Serhiy Storchaka2021-09-201-13/+4
* bpo-44704: Make Set._hash consistent with frozenset.__hash__ (GH-27281)Dennis Sweeney2021-07-211-0/+12
* bpo-25478: Add total() method to collections.Counter (GH-25829)Raymond Hettinger2021-05-031-0/+4
* bpo-43977: Make sure that tp_flags for pattern matching are inherited correct...Mark Shannon2021-05-021-0/+6
* bpo-43825: Fix deprecation warnings in test_cmd_line and test_collections (GH...Karthikeyan Singaravelan2021-04-141-1/+1
* Fix broken test for MutableSet.pop() (GH-25209)Stepan Sindelar2021-04-071-2/+6
* bpo-43245: Add keyword argument support to ChainMap.new_child() (GH-24788)Kamil Turek2021-03-141-0/+4
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-261-0/+4
* bpo-42990: Add __builtins__ attribute to functions (GH-24559)Victor Stinner2021-02-181-3/+4
* bpo-43102: Set namedtuple __new__'s internal builtins to a dict. (GH-24439)Raymond Hettinger2021-02-041-0/+5
* bpo-42487: don't call __getitem__ of underlying maps in ChainMap.__iter__ (GH...Andreas Poehlmann2020-11-301-0/+16
* Clarify that Set._from_iterable is not required to be a classmethod. (GH-23272)Richard Levasseur2020-11-211-0/+56
* bpo-40755: Add rich comparisons to Counter (GH-20548)Raymond Hettinger2020-05-311-66/+26
* bpo-40755: Add missing multiset operations to Counter() (GH-20339)Raymond Hettinger2020-05-281-0/+59
* bpo-40277: Add a repr() to namedtuple's _tuplegetter to aid with introspectio...Ammar Askar2020-04-151-0/+12
* Fix bug in test_collections.py (#19221)Curtis Bucher2020-03-301-1/+2
* bpo-36144: Add PEP 584 operators to collections.ChainMap (#18832)Curtis Bucher2020-03-231-0/+45
* Add tests and design notes for Counter subset/superset operations. (GH-17625)Raymond Hettinger2019-12-161-0/+23
* 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-121-2/+2