summaryrefslogtreecommitdiffstats
path: root/Lib/collections
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-117387 Remove hash mark from introductory text (GH-117409) (#gh-Miss Islington (bot)2024-03-311-1/+2
* [3.12] gh-116485: Fixed the typo (GH-116486) (#116489)Miss Islington (bot)2024-03-081-1/+1
* [3.12] gh-105736: Sync pure python version of OrderedDict with the C version ...Miss Islington (bot)2023-08-211-7/+9
* gh-91896: Revert some very noisy DeprecationWarnings for `ByteString` (#104424)Alex Waygood2023-05-131-9/+0
* gh-91896: Improve visibility of `ByteString` deprecation warnings (#104294)Alex Waygood2023-05-121-0/+9
* gh-103092: Isolate `_collections` (#103093)Erlend E. Aasland2023-04-121-0/+5
* gh-101446: Change `repr` of `collections.OrderedDict` (#101661)Nikita Sobolev2023-02-081-1/+1
* gh-86682: Adds sys._getframemodulename as an alternative to using _getframe (...Steve Dower2023-01-131-3/+6
* GH-98766: Modest speed-up from ChainMap.__iter__ (GH-98946)Raymond Hettinger2022-11-011-2/+2
* bpo-39264: Fix UserDict.get() to account for __missing__() (GH-17910)Bar Harel2022-05-101-1/+8
* bpo-26579: Add object.__getstate__(). (GH-2821)Serhiy Storchaka2022-04-061-4/+16
* Fix minor details in the Counter docs (GH-31029)Raymond Hettinger2022-02-021-0/+4
* Minor code rearrangement to group related methods together. (GH-30813)Raymond Hettinger2022-01-231-40/+38
* bpo-27275: Change popitem() and pop() methods of collections.OrderedDict (GH-...Serhiy Storchaka2021-08-031-4/+12
* bpo-25478: Add total() method to collections.Counter (GH-25829)Raymond Hettinger2021-05-031-0/+4
* bpo-43245: Add keyword argument support to ChainMap.new_child() (GH-24788)Kamil Turek2021-03-141-2/+5
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-261-0/+1
* bpo-43102: Set namedtuple __new__'s internal builtins to a dict. (GH-24439)Raymond Hettinger2021-02-041-1/+1
* bpo-37324: Remove ABC aliases from collections (GH-23754)Hugo van Kemenade2021-01-121-16/+0
* bpo-42195: Ensure consistency of Callable's __args__ in collections.abc and t...kj2020-12-131-0/+1
* bpo-42487: don't call __getitem__ of underlying maps in ChainMap.__iter__ (GH...Andreas Poehlmann2020-11-301-1/+1
* Revert "Fix all Python Cookbook links (#22205)" (GH-22424)Andre Delfino2020-09-271-1/+1
* Fix all Python Cookbook links (#22205)Andre Delfino2020-09-151-1/+1
* bpo-41006: collections imports lazily heap (GH-20940)Victor Stinner2020-06-171-2/+4
* Collections module reformatting and minor code refactoring (GH-20772)Raymond Hettinger2020-06-111-91/+271
* Minor improvement to the namedtuple implementation (GH-20741)Raymond Hettinger2020-06-081-1/+4
* Deny eval() direct access to builtins (GH-20713)Raymond Hettinger2020-06-081-1/+2
* Update comments to reflect the current API (GH-20682)Raymond Hettinger2020-06-061-4/+6
* bpo-40755: Add rich comparisons to Counter (GH-20548)Raymond Hettinger2020-05-311-86/+36
* bpo-40755: Add missing multiset operations to Counter() (GH-20339)Raymond Hettinger2020-05-281-6/+104
* Simplify creation of the __new__ method in namedtuple() (GH-20361)Raymond Hettinger2020-05-261-4/+2
* Expand the implementation comments (GH-19699)Raymond Hettinger2020-04-241-0/+7
* bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939)sweeneyde2020-04-221-0/+8
* bpo-36144: Add PEP 584 operators to collections.ChainMap (#18832)Curtis Bucher2020-03-231-0/+19
* bpo-36144: OrderedDict Union (PEP 584) (#18967)Brandt Bucher2020-03-131-0/+18
* bpo-36144: Dictionary Union (PEP 584) (#12088)Brandt Bucher2020-02-251-0/+20
* bpo-39674: Revert "bpo-25988: Do not expose abstract collection classes in th...Victor Stinner2020-02-181-0/+15
* bpo-36321: Fix misspelled attribute name in namedtuple() (GH-16858)Raymond Hettinger2019-10-201-2/+0
* bpo-25988: Do not expose abstract collection classes in the collections modul...Serhiy Storchaka2019-10-071-15/+0
* bpo-36582: Make collections.UserString.encode() return bytes, not str (GH-13138)Daniel Fortunov2019-08-281-6/+4
* Add missing space to warning message (GH-14915)Florian Bruhin2019-08-221-1/+1
* Fix typos in docs, comments and test assert messages (#14872)Min ho Kim2019-07-211-1/+1
* [3.9] bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-12620)Serhiy Storchaka2019-06-051-17/+1
* bpo-37116: Use PEP 570 syntax for positional-only parameters. (GH-13700)Serhiy Storchaka2019-06-011-36/+10
* bpo-36953: Delay removal of ABCs from collections. (GH-13409)Matthias Bussonnier2019-05-301-2/+2
* bpo-25652: Fix __rmod__ of UserString (GH-13326)Batuhan Taşkaya2019-05-211-3/+2
* bpo-27141: Fix collections.UserList and UserDict shallow copy. (GH-4094)Bar Harel2019-05-191-0/+14
* bpo-27639: Correct return type for UserList slicing operation (#13169)Michael Blahay2019-05-071-1/+5
* bpo-36542: Allow to overwrite the signature for Python functions. (GH-12705)Serhiy Storchaka2019-05-061-0/+2
* Have UserDict.__init__() implicitly check for updating w/ bool(kwargs) instea...Slam2019-04-021-1/+1