summaryrefslogtreecommitdiffstats
path: root/Lib/collections/abc.py
Commit message (Collapse)AuthorAgeFilesLines
* Close #14386: Register types.MappingProxyType as a MappingVictor Stinner2012-04-191-1/+3
|
* Clarify that the purpose of computing all the miscellaneous collection types ↵Raymond Hettinger2012-04-051-3/+7
| | | | is to register them with the appropriate ABCs.
* Issue #11333: Add __slots__ to the collections ABCs.Raymond Hettinger2011-03-221-0/+26
|
* Issue #11388: Added a clear() method to MutableSequenceEli Bendersky2011-03-041-0/+7
|
* Issue #11085: Moved collections abstract base classes into a separate moduleRaymond Hettinger2011-02-221-0/+621
called collections.abc, following the pattern used by importlib.abc. For backwards compatibility, the names continue to also be imported into the collections module.