]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Point to new collections.abc module for collections ABCs
authorÉric Araujo <merwok@netwok.org>
Fri, 3 Jun 2011 18:49:39 +0000 (20:49 +0200)
committerÉric Araujo <merwok@netwok.org>
Fri, 3 Jun 2011 18:49:39 +0000 (20:49 +0200)
Doc/library/abc.rst

index 3e38cb486344a3bfcc91cd694fe37d1921db7b74..54f7a5f1c6a2e628a04ed719c0d71f526c5bb57f 100644 (file)
@@ -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:`collectionsmodule 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.