diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:12:09 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:12:09 (GMT) |
commit | 98b28fddd8e63e1a9410facee3e41925eed8ac46 (patch) | |
tree | 410d277cbb20078d5fd226e8dd4d24bd225237d8 /Doc/faq | |
parent | 6039db8de30b5c20ba864cc4127fbfabf6fc0641 (diff) | |
parent | bfdcd436f0410e2b3eb34ce4fd7411488d3f13fb (diff) | |
download | cpython-98b28fddd8e63e1a9410facee3e41925eed8ac46.zip cpython-98b28fddd8e63e1a9410facee3e41925eed8ac46.tar.gz cpython-98b28fddd8e63e1a9410facee3e41925eed8ac46.tar.bz2 |
Issue #18758: Fixed and improved cross-references.
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/design.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst index 0f1c558..49e0c6d 100644 --- a/Doc/faq/design.rst +++ b/Doc/faq/design.rst @@ -634,7 +634,8 @@ Python 2.6 adds an :mod:`abc` module that lets you define Abstract Base Classes (ABCs). You can then use :func:`isinstance` and :func:`issubclass` to check whether an instance or a class implements a particular ABC. The :mod:`collections.abc` module defines a set of useful ABCs such as -:class:`Iterable`, :class:`Container`, and :class:`MutableMapping`. +:class:`~collections.abc.Iterable`, :class:`~collections.abc.Container`, and +:class:`~collections.abc.MutableMapping`. For Python, many of the advantages of interface specifications can be obtained by an appropriate test discipline for components. There is also a tool, |