summaryrefslogtreecommitdiffstats
path: root/Doc/library/collections.abc.rst
Commit message (Collapse)AuthorAgeFilesLines
* Fix reST label for collections ABCs.Éric Araujo2011-06-031-1/+1
| | | | | | The previous markup hijacked the abstract-base-classes glossary entry, which resulted in the HTML linking to collections.abc when defining the generic ABC concept. Now the glossary links to the abc module.
* #10617: merge with 3.2.Ezio Melotti2011-03-281-8/+50
|
* MergeAntoine Pitrou2011-03-221-1/+1
|
* Mentioned new clear() method of MutableSequence in its doc, and added unit ↵Eli Bendersky2011-03-041-1/+1
| | | | tests for its mixin methods
* Issue #11085: Moved collections abstract base classes into a separate moduleRaymond Hettinger2011-02-221-0/+139
called collections.abc, following the pattern used by importlib.abc. For backwards compatibility, the names continue to also be imported into the collections module.