blob: 9873489c103b6a2d3dd07bda3d626c6d1af36e58 [file] [log] [blame]
Raymond Hettinger158c9c22011-02-22 00:41:50 +00001:mod:`collections.abc` --- Abstract Base Classes for Containers
2===============================================================
3
4.. module:: collections.abc
5 :synopsis: Abstract base classes for containers
6.. moduleauthor:: Raymond Hettinger <python at rcn.com>
7.. sectionauthor:: Raymond Hettinger <python at rcn.com>
8
Éric Araujob389eec2011-08-16 19:10:24 +02009.. versionadded:: 3.3
10 Formerly, this module was part of the :mod:`collections` module.
11
Raymond Hettinger158c9c22011-02-22 00:41:50 +000012.. testsetup:: *
13
14 from collections import *
15 import itertools
16 __name__ = '<doctest>'
17
18**Source code:** :source:`Lib/collections/abc.py`
19
20--------------
21
22This module provides :term:`abstract base classes <abstract base class>` that
23can be used to test whether a class provides a particular interface; for
24example, whether it is hashable or whether it is a mapping.
25
Raymond Hettinger158c9c22011-02-22 00:41:50 +000026
Éric Araujof90112e2011-06-03 19:18:41 +020027.. _collections-abstract-base-classes:
Raymond Hettinger158c9c22011-02-22 00:41:50 +000028
29Collections Abstract Base Classes
30---------------------------------
31
Ezio Melottic831a912011-03-28 19:27:09 +030032The collections module offers the following :term:`ABCs <abstract base class>`:
Raymond Hettinger158c9c22011-02-22 00:41:50 +000033
34========================= ===================== ====================== ====================================================
Ezio Melottic831a912011-03-28 19:27:09 +030035ABC Inherits from Abstract Methods Mixin Methods
Raymond Hettinger158c9c22011-02-22 00:41:50 +000036========================= ===================== ====================== ====================================================
37:class:`Container` ``__contains__``
38:class:`Hashable` ``__hash__``
39:class:`Iterable` ``__iter__``
40:class:`Iterator` :class:`Iterable` ``__next__`` ``__iter__``
41:class:`Sized` ``__len__``
42:class:`Callable` ``__call__``
43
44:class:`Sequence` :class:`Sized`, ``__getitem__`` ``__contains__``, ``__iter__``, ``__reversed__``,
45 :class:`Iterable`, ``index``, and ``count``
46 :class:`Container`
47
Éric Araujo459b4522011-06-04 21:16:42 +020048:class:`MutableSequence` :class:`Sequence` ``__setitem__``, Inherited :class:`Sequence` methods and
Raymond Hettinger158c9c22011-02-22 00:41:50 +000049 ``__delitem__``, ``append``, ``reverse``, ``extend``, ``pop``,
Ezio Melottic831a912011-03-28 19:27:09 +030050 ``insert`` ``remove``, ``clear``, and ``__iadd__``
Raymond Hettinger158c9c22011-02-22 00:41:50 +000051
52:class:`Set` :class:`Sized`, ``__le__``, ``__lt__``, ``__eq__``, ``__ne__``,
53 :class:`Iterable`, ``__gt__``, ``__ge__``, ``__and__``, ``__or__``,
54 :class:`Container` ``__sub__``, ``__xor__``, and ``isdisjoint``
55
Ezio Melottic831a912011-03-28 19:27:09 +030056:class:`MutableSet` :class:`Set` ``add``, Inherited :class:`Set` methods and
Raymond Hettinger158c9c22011-02-22 00:41:50 +000057 ``discard`` ``clear``, ``pop``, ``remove``, ``__ior__``,
58 ``__iand__``, ``__ixor__``, and ``__isub__``
59
60:class:`Mapping` :class:`Sized`, ``__getitem__`` ``__contains__``, ``keys``, ``items``, ``values``,
61 :class:`Iterable`, ``get``, ``__eq__``, and ``__ne__``
62 :class:`Container`
63
Ezio Melottic831a912011-03-28 19:27:09 +030064:class:`MutableMapping` :class:`Mapping` ``__setitem__``, Inherited :class:`Mapping` methods and
Raymond Hettinger158c9c22011-02-22 00:41:50 +000065 ``__delitem__`` ``pop``, ``popitem``, ``clear``, ``update``,
66 and ``setdefault``
67
68
69:class:`MappingView` :class:`Sized` ``__len__``
Raymond Hettinger158c9c22011-02-22 00:41:50 +000070:class:`ItemsView` :class:`MappingView`, ``__contains__``,
71 :class:`Set` ``__iter__``
Ezio Melottic831a912011-03-28 19:27:09 +030072:class:`KeysView` :class:`MappingView`, ``__contains__``,
73 :class:`Set` ``__iter__``
Raymond Hettinger158c9c22011-02-22 00:41:50 +000074:class:`ValuesView` :class:`MappingView` ``__contains__``, ``__iter__``
75========================= ===================== ====================== ====================================================
76
Ezio Melottic831a912011-03-28 19:27:09 +030077
78.. class:: Container
79 Hashable
80 Sized
81 Callable
82
83 ABCs for classes that provide respectively the methods :meth:`__contains__`,
84 :meth:`__hash__`, :meth:`__len__`, and :meth:`__call__`.
85
86.. class:: Iterable
87
88 ABC for classes that provide the :meth:`__iter__` method.
89 See also the definition of :term:`iterable`.
90
91.. class:: Iterator
92
93 ABC for classes that provide the :meth:`__iter__` and :meth:`next` methods.
94 See also the definition of :term:`iterator`.
95
96.. class:: Sequence
97 MutableSequence
98
99 ABCs for read-only and mutable :term:`sequences <sequence>`.
100
101.. class:: Set
102 MutableSet
103
104 ABCs for read-only and mutable sets.
105
106.. class:: Mapping
107 MutableMapping
108
109 ABCs for read-only and mutable :term:`mappings <mapping>`.
110
111.. class:: MappingView
112 ItemsView
113 KeysView
114 ValuesView
115
116 ABCs for mapping, items, keys, and values :term:`views <view>`.
117
118
Raymond Hettinger158c9c22011-02-22 00:41:50 +0000119These ABCs allow us to ask classes or instances if they provide
120particular functionality, for example::
121
122 size = None
123 if isinstance(myvar, collections.Sized):
124 size = len(myvar)
125
126Several of the ABCs are also useful as mixins that make it easier to develop
127classes supporting container APIs. For example, to write a class supporting
128the full :class:`Set` API, it only necessary to supply the three underlying
129abstract methods: :meth:`__contains__`, :meth:`__iter__`, and :meth:`__len__`.
130The ABC supplies the remaining methods such as :meth:`__and__` and
131:meth:`isdisjoint` ::
132
133 class ListBasedSet(collections.Set):
134 ''' Alternate set implementation favoring space over speed
135 and not requiring the set elements to be hashable. '''
136 def __init__(self, iterable):
137 self.elements = lst = []
138 for value in iterable:
139 if value not in lst:
140 lst.append(value)
141 def __iter__(self):
142 return iter(self.elements)
143 def __contains__(self, value):
144 return value in self.elements
145 def __len__(self):
146 return len(self.elements)
147
148 s1 = ListBasedSet('abcdef')
149 s2 = ListBasedSet('defghi')
150 overlap = s1 & s2 # The __and__() method is supported automatically
151
152Notes on using :class:`Set` and :class:`MutableSet` as a mixin:
153
154(1)
155 Since some set operations create new sets, the default mixin methods need
156 a way to create new instances from an iterable. The class constructor is
157 assumed to have a signature in the form ``ClassName(iterable)``.
158 That assumption is factored-out to an internal classmethod called
159 :meth:`_from_iterable` which calls ``cls(iterable)`` to produce a new set.
160 If the :class:`Set` mixin is being used in a class with a different
Antoine Pitrou36920352011-03-22 18:33:33 +0100161 constructor signature, you will need to override :meth:`_from_iterable`
Raymond Hettinger158c9c22011-02-22 00:41:50 +0000162 with a classmethod that can construct new instances from
163 an iterable argument.
164
165(2)
166 To override the comparisons (presumably for speed, as the
167 semantics are fixed), redefine :meth:`__le__` and
168 then the other operations will automatically follow suit.
169
170(3)
171 The :class:`Set` mixin provides a :meth:`_hash` method to compute a hash value
172 for the set; however, :meth:`__hash__` is not defined because not all sets
173 are hashable or immutable. To add set hashabilty using mixins,
174 inherit from both :meth:`Set` and :meth:`Hashable`, then define
175 ``__hash__ = Set._hash``.
176
177.. seealso::
178
Éric Araujo459b4522011-06-04 21:16:42 +0200179 * `OrderedSet recipe <http://code.activestate.com/recipes/576694/>`_ for an
180 example built on :class:`MutableSet`.
Raymond Hettinger158c9c22011-02-22 00:41:50 +0000181
Éric Araujo459b4522011-06-04 21:16:42 +0200182 * For more about ABCs, see the :mod:`abc` module and :pep:`3119`.