diff options
author | Éric Araujo <merwok@netwok.org> | 2011-06-04 18:37:16 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-06-04 18:37:16 (GMT) |
commit | b4ef8f299f9e50c872026eac00243f75fcf24aa2 (patch) | |
tree | a47ccbf471a394cc83f6b415ef9d0f1793841f13 /Doc/library/abc.rst | |
parent | 4dfcb1a00dbcbc76fcd152d652d3f83b53b14e45 (diff) | |
parent | 823759e7672b95ced55b9d5a757faab47bdb5c2c (diff) | |
download | cpython-b4ef8f299f9e50c872026eac00243f75fcf24aa2.zip cpython-b4ef8f299f9e50c872026eac00243f75fcf24aa2.tar.gz cpython-b4ef8f299f9e50c872026eac00243f75fcf24aa2.tar.bz2 |
Branch merge
Diffstat (limited to 'Doc/library/abc.rst')
-rw-r--r-- | Doc/library/abc.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index 3e38cb4..54f7a5f 100644 --- a/Doc/library/abc.rst +++ b/Doc/library/abc.rst @@ -20,7 +20,7 @@ regarding a type hierarchy for numbers based on ABCs.) The :mod:`collections` module has some concrete classes that derive from ABCs; these can, of course, be further derived. In addition the -:mod:`collections` module has some ABCs that can be used to test whether +:mod:`collections.abc` submodule has some ABCs that can be used to test whether a class or instance provides a particular interface, for example, is it hashable or a mapping. |