From: Éric Araujo Date: Fri, 3 Jun 2011 18:49:39 +0000 (+0200) Subject: Point to new collections.abc module for collections ABCs X-Git-Tag: v3.3.0a1~2172^2~15^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=36226804fec95ac02f151087aace78945cda7168;p=thirdparty%2FPython%2Fcpython.git Point to new collections.abc module for collections ABCs --- diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst index 3e38cb486344..54f7a5f1c6a2 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.