summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-06-03 18:49:39 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-06-03 18:49:39 (GMT)
commit36226804fec95ac02f151087aace78945cda7168 (patch)
tree36c20ad6ec4a65c4d3f7c726dddc17278227fa5c /Doc
parent61c4372ce100dc5a19d3425fd44ea8061f2e1eaa (diff)
downloadcpython-36226804fec95ac02f151087aace78945cda7168.zip
cpython-36226804fec95ac02f151087aace78945cda7168.tar.gz
cpython-36226804fec95ac02f151087aace78945cda7168.tar.bz2
Point to new collections.abc module for collections ABCs
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/abc.rst2
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.