Point to new collections.abc module for collections ABCs

This commit is contained in:
Éric Araujo 2011-06-03 20:49:39 +02:00
parent 61c4372ce1
commit 36226804fe

View 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:`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.