| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | :mod:`abc` --- Abstract Base Classes
 | 
					
						
							|  |  |  | ====================================
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. module:: abc
 | 
					
						
							| 
									
										
										
										
											2018-10-27 00:58:26 +02:00
										 |  |  |    :synopsis: Abstract base classes according to :pep:`3119`.
 | 
					
						
							| 
									
										
										
										
											2016-06-11 15:02:54 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | .. moduleauthor:: Guido van Rossum
 | 
					
						
							|  |  |  | .. sectionauthor:: Georg Brandl
 | 
					
						
							|  |  |  | .. much of the content adapted from docstrings
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-01-24 16:28:06 +00:00
										 |  |  | **Source code:** :source:`Lib/abc.py`
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | --------------
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-15 17:49:20 +02:00
										 |  |  | This module provides the infrastructure for defining :term:`abstract base
 | 
					
						
							| 
									
										
										
										
											2012-12-13 19:09:33 +02:00
										 |  |  | classes <abstract base class>` (ABCs) in Python, as outlined in :pep:`3119`;
 | 
					
						
							|  |  |  | see the PEP for why this was added to Python. (See also :pep:`3141` and the
 | 
					
						
							|  |  |  | :mod:`numbers` module regarding a type hierarchy for numbers based on ABCs.)
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-05 08:43:04 +00:00
										 |  |  | The :mod:`collections` module has some concrete classes that derive from
 | 
					
						
							| 
									
										
										
										
											2018-11-13 21:40:44 -03:00
										 |  |  | ABCs; these can, of course, be further derived. In addition, the
 | 
					
						
							| 
									
										
										
										
											2011-06-03 20:49:39 +02:00
										 |  |  | :mod:`collections.abc` submodule has some ABCs that can be used to test whether
 | 
					
						
							| 
									
										
										
										
											2018-11-13 21:40:44 -03:00
										 |  |  | a class or instance provides a particular interface, for example, if it is
 | 
					
						
							|  |  |  | hashable or if it is a mapping.
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:47:52 -05:00
										 |  |  | This module provides the metaclass :class:`ABCMeta` for defining ABCs and
 | 
					
						
							|  |  |  | a helper class :class:`ABC` to alternatively define ABCs through inheritance:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. class:: ABC
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    A helper class that has :class:`ABCMeta` as its metaclass.  With this class,
 | 
					
						
							|  |  |  |    an abstract base class can be created by simply deriving from :class:`ABC`
 | 
					
						
							|  |  |  |    avoiding sometimes confusing metaclass usage, for example::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |      from abc import ABC
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |      class MyABC(ABC):
 | 
					
						
							|  |  |  |          pass
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Note that the type of :class:`ABC` is still :class:`ABCMeta`, therefore
 | 
					
						
							|  |  |  |    inheriting from :class:`ABC` requires the usual precautions regarding
 | 
					
						
							|  |  |  |    metaclass usage, as multiple inheritance may lead to metaclass conflicts.
 | 
					
						
							|  |  |  |    One may also define an abstract base class by passing the metaclass
 | 
					
						
							|  |  |  |    keyword and using :class:`ABCMeta` directly, for example::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |      from abc import ABCMeta
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |      class MyABC(metaclass=ABCMeta):
 | 
					
						
							|  |  |  |          pass
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. versionadded:: 3.4
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | .. class:: ABCMeta
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Metaclass for defining Abstract Base Classes (ABCs).
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Use this metaclass to create an ABC.  An ABC can be subclassed directly, and
 | 
					
						
							|  |  |  |    then acts as a mix-in class.  You can also register unrelated concrete
 | 
					
						
							|  |  |  |    classes (even built-in classes) and unrelated ABCs as "virtual subclasses" --
 | 
					
						
							|  |  |  |    these and their descendants will be considered subclasses of the registering
 | 
					
						
							|  |  |  |    ABC by the built-in :func:`issubclass` function, but the registering ABC
 | 
					
						
							|  |  |  |    won't show up in their MRO (Method Resolution Order) nor will method
 | 
					
						
							|  |  |  |    implementations defined by the registering ABC be callable (not even via
 | 
					
						
							| 
									
										
										
										
											2007-09-05 08:43:04 +00:00
										 |  |  |    :func:`super`). [#]_
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Classes created with a metaclass of :class:`ABCMeta` have the following method:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. method:: register(subclass)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-05 08:43:04 +00:00
										 |  |  |       Register *subclass* as a "virtual subclass" of this ABC. For
 | 
					
						
							|  |  |  |       example::
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:47:52 -05:00
										 |  |  |          from abc import ABC
 | 
					
						
							| 
									
										
										
										
											2007-09-05 08:43:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:47:52 -05:00
										 |  |  |          class MyABC(ABC):
 | 
					
						
							|  |  |  |              pass
 | 
					
						
							| 
									
										
										
										
											2007-09-05 08:43:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:47:52 -05:00
										 |  |  |          MyABC.register(tuple)
 | 
					
						
							| 
									
										
										
										
											2007-09-05 08:43:04 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:47:52 -05:00
										 |  |  |          assert issubclass(tuple, MyABC)
 | 
					
						
							|  |  |  |          assert isinstance((), MyABC)
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-02-24 18:03:10 +00:00
										 |  |  |       .. versionchanged:: 3.3
 | 
					
						
							|  |  |  |          Returns the registered subclass, to allow usage as a class decorator.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-25 18:41:50 +02:00
										 |  |  |       .. versionchanged:: 3.4
 | 
					
						
							|  |  |  |          To detect calls to :meth:`register`, you can use the
 | 
					
						
							|  |  |  |          :func:`get_cache_token` function.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  |    You can also override this method in an abstract base class:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. method:: __subclasshook__(subclass)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       (Must be defined as a class method.)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       Check whether *subclass* is considered a subclass of this ABC.  This means
 | 
					
						
							|  |  |  |       that you can customize the behavior of ``issubclass`` further without the
 | 
					
						
							|  |  |  |       need to call :meth:`register` on every class you want to consider a
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |       subclass of the ABC.  (This class method is called from the
 | 
					
						
							|  |  |  |       :meth:`__subclasscheck__` method of the ABC.)
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |       This method should return ``True``, ``False`` or ``NotImplemented``.  If
 | 
					
						
							|  |  |  |       it returns ``True``, the *subclass* is considered a subclass of this ABC.
 | 
					
						
							|  |  |  |       If it returns ``False``, the *subclass* is not considered a subclass of
 | 
					
						
							|  |  |  |       this ABC, even if it would normally be one.  If it returns
 | 
					
						
							|  |  |  |       ``NotImplemented``, the subclass check is continued with the usual
 | 
					
						
							|  |  |  |       mechanism.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |       .. XXX explain the "usual mechanism"
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |    For a demonstration of these concepts, look at this example ABC definition::
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |       class Foo:
 | 
					
						
							|  |  |  |           def __getitem__(self, index):
 | 
					
						
							|  |  |  |               ...
 | 
					
						
							|  |  |  |           def __len__(self):
 | 
					
						
							|  |  |  |               ...
 | 
					
						
							|  |  |  |           def get_iterator(self):
 | 
					
						
							|  |  |  |               return iter(self)
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:47:52 -05:00
										 |  |  |       class MyIterable(ABC):
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |           @abstractmethod
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  |           def __iter__(self):
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |               while False:
 | 
					
						
							|  |  |  |                   yield None
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           def get_iterator(self):
 | 
					
						
							|  |  |  |               return self.__iter__()
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |           @classmethod
 | 
					
						
							|  |  |  |           def __subclasshook__(cls, C):
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |               if cls is MyIterable:
 | 
					
						
							|  |  |  |                   if any("__iter__" in B.__dict__ for B in C.__mro__):
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  |                       return True
 | 
					
						
							|  |  |  |               return NotImplemented
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |       MyIterable.register(Foo)
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |    The ABC ``MyIterable`` defines the standard iterable method,
 | 
					
						
							| 
									
										
										
										
											2013-10-13 23:09:14 +03:00
										 |  |  |    :meth:`~iterator.__iter__`, as an abstract method.  The implementation given
 | 
					
						
							|  |  |  |    here can still be called from subclasses.  The :meth:`get_iterator` method
 | 
					
						
							|  |  |  |    is also part of the ``MyIterable`` abstract base class, but it does not have
 | 
					
						
							|  |  |  |    to be overridden in non-abstract derived classes.
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    The :meth:`__subclasshook__` class method defined here says that any class
 | 
					
						
							| 
									
										
										
										
											2013-10-13 23:09:14 +03:00
										 |  |  |    that has an :meth:`~iterator.__iter__` method in its
 | 
					
						
							|  |  |  |    :attr:`~object.__dict__` (or in that of one of its base classes, accessed
 | 
					
						
							|  |  |  |    via the :attr:`~class.__mro__` list) is considered a ``MyIterable`` too.
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |    Finally, the last line makes ``Foo`` a virtual subclass of ``MyIterable``,
 | 
					
						
							| 
									
										
										
										
											2013-10-13 23:09:14 +03:00
										 |  |  |    even though it does not define an :meth:`~iterator.__iter__` method (it uses
 | 
					
						
							|  |  |  |    the old-style iterable protocol, defined in terms of :meth:`__len__` and
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |    :meth:`__getitem__`).  Note that this will not make ``get_iterator``
 | 
					
						
							|  |  |  |    available as a method of ``Foo``, so it is provided separately.
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-16 13:32:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-13 19:09:33 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 10:00:01 +05:30
										 |  |  | The :mod:`abc` module also provides the following decorator:
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 18:35:31 -05:00
										 |  |  | .. decorator:: abstractmethod
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    A decorator indicating abstract methods.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 15:34:02 -05:00
										 |  |  |    Using this decorator requires that the class's metaclass is :class:`ABCMeta`
 | 
					
						
							|  |  |  |    or is derived from it.  A class that has a metaclass derived from
 | 
					
						
							|  |  |  |    :class:`ABCMeta` cannot be instantiated unless all of its abstract methods
 | 
					
						
							|  |  |  |    and properties are overridden.  The abstract methods can be called using any
 | 
					
						
							|  |  |  |    of the normal 'super' call mechanisms.  :func:`abstractmethod` may be used
 | 
					
						
							|  |  |  |    to declare abstract methods for properties and descriptors.
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |    Dynamically adding abstract methods to a class, or attempting to modify the
 | 
					
						
							| 
									
										
										
										
											2020-10-06 20:40:50 +03:00
										 |  |  |    abstraction status of a method or class once it is created, are only
 | 
					
						
							|  |  |  |    supported using the :func:`update_abstractmethods` function.  The
 | 
					
						
							|  |  |  |    :func:`abstractmethod` only affects subclasses derived using regular
 | 
					
						
							|  |  |  |    inheritance; "virtual subclasses" registered with the ABC's :meth:`register`
 | 
					
						
							|  |  |  |    method are not affected.
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-15 15:34:02 -05:00
										 |  |  |    When :func:`abstractmethod` is applied in combination with other method
 | 
					
						
							|  |  |  |    descriptors, it should be applied as the innermost decorator, as shown in
 | 
					
						
							|  |  |  |    the following usage examples::
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:47:52 -05:00
										 |  |  |       class C(ABC):
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  |           @abstractmethod
 | 
					
						
							| 
									
										
										
										
											2022-01-26 13:06:10 +03:00
										 |  |  |           def my_abstract_method(self, arg1):
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  |               ...
 | 
					
						
							| 
									
										
										
										
											2011-12-15 15:34:02 -05:00
										 |  |  |           @classmethod
 | 
					
						
							|  |  |  |           @abstractmethod
 | 
					
						
							| 
									
										
										
										
											2022-01-26 13:06:10 +03:00
										 |  |  |           def my_abstract_classmethod(cls, arg2):
 | 
					
						
							| 
									
										
										
										
											2011-12-15 15:34:02 -05:00
										 |  |  |               ...
 | 
					
						
							|  |  |  |           @staticmethod
 | 
					
						
							|  |  |  |           @abstractmethod
 | 
					
						
							| 
									
										
										
										
											2022-01-26 13:06:10 +03:00
										 |  |  |           def my_abstract_staticmethod(arg3):
 | 
					
						
							| 
									
										
										
										
											2011-12-15 15:34:02 -05:00
										 |  |  |               ...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           @property
 | 
					
						
							|  |  |  |           @abstractmethod
 | 
					
						
							|  |  |  |           def my_abstract_property(self):
 | 
					
						
							|  |  |  |               ...
 | 
					
						
							|  |  |  |           @my_abstract_property.setter
 | 
					
						
							|  |  |  |           @abstractmethod
 | 
					
						
							|  |  |  |           def my_abstract_property(self, val):
 | 
					
						
							|  |  |  |               ...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           @abstractmethod
 | 
					
						
							|  |  |  |           def _get_x(self):
 | 
					
						
							|  |  |  |               ...
 | 
					
						
							|  |  |  |           @abstractmethod
 | 
					
						
							|  |  |  |           def _set_x(self, val):
 | 
					
						
							|  |  |  |               ...
 | 
					
						
							|  |  |  |           x = property(_get_x, _set_x)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    In order to correctly interoperate with the abstract base class machinery,
 | 
					
						
							|  |  |  |    the descriptor must identify itself as abstract using
 | 
					
						
							|  |  |  |    :attr:`__isabstractmethod__`. In general, this attribute should be ``True``
 | 
					
						
							|  |  |  |    if any of the methods used to compose the descriptor are abstract. For
 | 
					
						
							| 
									
										
										
										
											2018-11-13 21:29:57 -03:00
										 |  |  |    example, Python's built-in :class:`property` does the equivalent of::
 | 
					
						
							| 
									
										
										
										
											2011-12-15 15:34:02 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  |       class Descriptor:
 | 
					
						
							|  |  |  |           ...
 | 
					
						
							|  |  |  |           @property
 | 
					
						
							|  |  |  |           def __isabstractmethod__(self):
 | 
					
						
							|  |  |  |               return any(getattr(f, '__isabstractmethod__', False) for
 | 
					
						
							|  |  |  |                          f in (self._fget, self._fset, self._fdel))
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  |    .. note::
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
											  
											
												Merged revisions 69803-69805,69840,69901,69905,69907,69924,69927,69987 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
  r69803 | georg.brandl | 2009-02-20 01:48:21 -0600 (Fri, 20 Feb 2009) | 1 line
  #5327: fix a broken link by joining it.
........
  r69804 | georg.brandl | 2009-02-20 02:22:21 -0600 (Fri, 20 Feb 2009) | 1 line
  At least separate imports from other statements.
........
  r69805 | georg.brandl | 2009-02-20 02:45:47 -0600 (Fri, 20 Feb 2009) | 2 lines
  Fix punctuation.
........
  r69840 | georg.brandl | 2009-02-21 13:09:40 -0600 (Sat, 21 Feb 2009) | 1 line
  #5338, #5339: two types in the API manual.
........
  r69901 | georg.brandl | 2009-02-23 05:24:46 -0600 (Mon, 23 Feb 2009) | 2 lines
  #5349: C++ pure virtuals can also have an implementation.
........
  r69905 | georg.brandl | 2009-02-23 09:51:27 -0600 (Mon, 23 Feb 2009) | 2 lines
  #5352: str.count() counts non-overlapping instances.
........
  r69907 | georg.brandl | 2009-02-23 12:33:48 -0600 (Mon, 23 Feb 2009) | 1 line
  Fix grammar.
........
  r69924 | benjamin.peterson | 2009-02-23 20:45:35 -0600 (Mon, 23 Feb 2009) | 1 line
  update README on running tests
........
  r69927 | neil.schemenauer | 2009-02-23 22:23:25 -0600 (Mon, 23 Feb 2009) | 1 line
  Fix call to os.waitpid, it does not take keyword args.
........
  r69987 | benjamin.peterson | 2009-02-25 18:30:11 -0600 (Wed, 25 Feb 2009) | 1 line
  fix str.format()'s first arg #5371
........
											
										 
											2009-02-26 03:38:59 +00:00
										 |  |  |       Unlike Java abstract methods, these abstract
 | 
					
						
							| 
									
										
										
										
											2007-09-05 08:43:04 +00:00
										 |  |  |       methods may have an implementation. This implementation can be
 | 
					
						
							|  |  |  |       called via the :func:`super` mechanism from the class that
 | 
					
						
							|  |  |  |       overrides it.  This could be useful as an end-point for a
 | 
					
						
							|  |  |  |       super-call in a framework that uses cooperative
 | 
					
						
							|  |  |  |       multiple-inheritance.
 | 
					
						
							| 
									
										
										
										
											2007-09-04 15:45:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 10:00:01 +05:30
										 |  |  | The :mod:`abc` module also supports the following legacy decorators:
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 18:35:31 -05:00
										 |  |  | .. decorator:: abstractclassmethod
 | 
					
						
							| 
									
										
										
										
											2010-08-17 00:52:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 10:00:01 +05:30
										 |  |  |    .. versionadded:: 3.2
 | 
					
						
							|  |  |  |    .. deprecated:: 3.3
 | 
					
						
							|  |  |  |        It is now possible to use :class:`classmethod` with
 | 
					
						
							|  |  |  |        :func:`abstractmethod`, making this decorator redundant.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-17 00:52:52 +00:00
										 |  |  |    A subclass of the built-in :func:`classmethod`, indicating an abstract
 | 
					
						
							|  |  |  |    classmethod. Otherwise it is similar to :func:`abstractmethod`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 22:56:02 +10:00
										 |  |  |    This special case is deprecated, as the :func:`classmethod` decorator
 | 
					
						
							|  |  |  |    is now correctly identified as abstract when applied to an abstract
 | 
					
						
							|  |  |  |    method::
 | 
					
						
							| 
									
										
										
										
											2010-08-17 00:52:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:47:52 -05:00
										 |  |  |       class C(ABC):
 | 
					
						
							| 
									
										
										
										
											2012-12-08 22:56:02 +10:00
										 |  |  |           @classmethod
 | 
					
						
							|  |  |  |           @abstractmethod
 | 
					
						
							| 
									
										
										
										
											2022-01-26 13:06:10 +03:00
										 |  |  |           def my_abstract_classmethod(cls, arg):
 | 
					
						
							| 
									
										
										
										
											2010-08-17 00:52:52 +00:00
										 |  |  |               ...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 10:00:01 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | .. decorator:: abstractstaticmethod
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-17 03:37:20 +00:00
										 |  |  |    .. versionadded:: 3.2
 | 
					
						
							| 
									
										
										
										
											2011-12-15 15:34:02 -05:00
										 |  |  |    .. deprecated:: 3.3
 | 
					
						
							| 
									
										
										
										
											2018-02-21 10:00:01 +05:30
										 |  |  |        It is now possible to use :class:`staticmethod` with
 | 
					
						
							| 
									
										
										
										
											2012-12-08 22:56:02 +10:00
										 |  |  |        :func:`abstractmethod`, making this decorator redundant.
 | 
					
						
							| 
									
										
										
										
											2010-08-17 03:37:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-17 00:52:52 +00:00
										 |  |  |    A subclass of the built-in :func:`staticmethod`, indicating an abstract
 | 
					
						
							|  |  |  |    staticmethod. Otherwise it is similar to :func:`abstractmethod`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 22:56:02 +10:00
										 |  |  |    This special case is deprecated, as the :func:`staticmethod` decorator
 | 
					
						
							|  |  |  |    is now correctly identified as abstract when applied to an abstract
 | 
					
						
							|  |  |  |    method::
 | 
					
						
							| 
									
										
										
										
											2010-08-17 00:52:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:47:52 -05:00
										 |  |  |       class C(ABC):
 | 
					
						
							| 
									
										
										
										
											2012-12-08 22:56:02 +10:00
										 |  |  |           @staticmethod
 | 
					
						
							|  |  |  |           @abstractmethod
 | 
					
						
							| 
									
										
										
										
											2022-01-26 13:06:10 +03:00
										 |  |  |           def my_abstract_staticmethod(arg):
 | 
					
						
							| 
									
										
										
										
											2010-08-17 00:52:52 +00:00
										 |  |  |               ...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-12 23:39:43 +09:00
										 |  |  | .. decorator:: abstractproperty
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-02-21 10:00:01 +05:30
										 |  |  |    .. deprecated:: 3.3
 | 
					
						
							|  |  |  |        It is now possible to use :class:`property`, :meth:`property.getter`,
 | 
					
						
							|  |  |  |        :meth:`property.setter` and :meth:`property.deleter` with
 | 
					
						
							|  |  |  |        :func:`abstractmethod`, making this decorator redundant.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 22:56:02 +10:00
										 |  |  |    A subclass of the built-in :func:`property`, indicating an abstract
 | 
					
						
							|  |  |  |    property.
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 22:56:02 +10:00
										 |  |  |    This special case is deprecated, as the :func:`property` decorator
 | 
					
						
							|  |  |  |    is now correctly identified as abstract when applied to an abstract
 | 
					
						
							|  |  |  |    method::
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:47:52 -05:00
										 |  |  |       class C(ABC):
 | 
					
						
							| 
									
										
										
										
											2012-12-08 22:56:02 +10:00
										 |  |  |           @property
 | 
					
						
							|  |  |  |           @abstractmethod
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  |           def my_abstract_property(self):
 | 
					
						
							|  |  |  |               ...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-08 22:56:02 +10:00
										 |  |  |    The above example defines a read-only property; you can also define a
 | 
					
						
							|  |  |  |    read-write abstract property by appropriately marking one or more of the
 | 
					
						
							|  |  |  |    underlying methods as abstract::
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-30 17:47:52 -05:00
										 |  |  |       class C(ABC):
 | 
					
						
							| 
									
										
										
										
											2012-12-08 22:56:02 +10:00
										 |  |  |           @property
 | 
					
						
							|  |  |  |           def x(self):
 | 
					
						
							|  |  |  |               ...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           @x.setter
 | 
					
						
							|  |  |  |           @abstractmethod
 | 
					
						
							|  |  |  |           def x(self, val):
 | 
					
						
							|  |  |  |               ...
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    If only some components are abstract, only those components need to be
 | 
					
						
							|  |  |  |    updated to create a concrete property in a subclass::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       class D(C):
 | 
					
						
							|  |  |  |           @C.x.setter
 | 
					
						
							|  |  |  |           def x(self, val):
 | 
					
						
							|  |  |  |               ...
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-04 08:11:03 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-25 18:41:50 +02:00
										 |  |  | The :mod:`abc` module also provides the following functions:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. function:: get_cache_token()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Returns the current abstract base class cache token.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-24 16:13:32 -05:00
										 |  |  |    The token is an opaque object (that supports equality testing) identifying
 | 
					
						
							|  |  |  |    the current version of the abstract base class cache for virtual subclasses.
 | 
					
						
							|  |  |  |    The token changes with every call to :meth:`ABCMeta.register` on any ABC.
 | 
					
						
							| 
									
										
										
										
											2013-05-25 18:41:50 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |    .. versionadded:: 3.4
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-06 20:40:50 +03:00
										 |  |  | .. function:: update_abstractmethods(cls)
 | 
					
						
							| 
									
										
										
										
											2020-12-01 06:45:11 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-10-06 20:40:50 +03:00
										 |  |  |    A function to recalculate an abstract class's abstraction status. This
 | 
					
						
							|  |  |  |    function should be called if a class's abstract methods have been
 | 
					
						
							|  |  |  |    implemented or changed after it was created. Usually, this function should
 | 
					
						
							|  |  |  |    be called from within a class decorator.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    Returns *cls*, to allow usage as a class decorator.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-12-01 06:45:11 -03:00
										 |  |  |    If *cls* is not an instance of :class:`ABCMeta`, does nothing.
 | 
					
						
							| 
									
										
										
										
											2020-10-06 20:40:50 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |    .. note::
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       This function assumes that *cls*'s superclasses are already updated.
 | 
					
						
							|  |  |  |       It does not update any subclasses.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    .. versionadded:: 3.10
 | 
					
						
							| 
									
										
										
										
											2013-05-25 18:41:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-05 08:43:04 +00:00
										 |  |  | .. rubric:: Footnotes
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | .. [#] C++ programmers should note that Python's virtual base class
 | 
					
						
							|  |  |  |    concept is not the same as C++'s.
 |