[Python-checkins] cpython: Point to new collections.abc module for collections ABCs

eric.araujo python-checkins at python.org
Mon Jun 6 17:13:47 CEST 2011


http://hg.python.org/cpython/rev/441ae0da70c4
changeset:   70662:441ae0da70c4
parent:      70618:41c918897286
user:        Éric Araujo <merwok at netwok.org>
date:        Fri Jun 03 20:49:39 2011 +0200
summary:
  Point to new collections.abc module for collections ABCs

files:
  Doc/library/abc.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/abc.rst b/Doc/library/abc.rst
--- a/Doc/library/abc.rst
+++ b/Doc/library/abc.rst
@@ -20,7 +20,7 @@
 
 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.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list