diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:09:00 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-13 20:09:00 (GMT) |
commit | b33336f65014f32c3e9873c32618a3bf656f3445 (patch) | |
tree | 023edd04ecc9b83b48a83594f2fd4f69d7ef709a /Doc/faq | |
parent | 7378d6374c286c86daf4389fbbb4ee2d52ac3401 (diff) | |
download | cpython-b33336f65014f32c3e9873c32618a3bf656f3445.zip cpython-b33336f65014f32c3e9873c32618a3bf656f3445.tar.gz cpython-b33336f65014f32c3e9873c32618a3bf656f3445.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 40babec..017c6d4 100644 --- a/Doc/faq/design.rst +++ b/Doc/faq/design.rst @@ -682,7 +682,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` module defines a set of useful ABCs such as -:class:`Iterable`, :class:`Container`, and :class:`MutableMapping`. +:class:`~collections.Iterable`, :class:`~collections.Container`, and +:class:`~collections.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, |