]> granicus.if.org Git - python/commitdiff
#22918: Drop obsolete mention of 'keys' in datamodel __iter__ docs.
authorR David Murray <rdmurray@bitdance.com>
Wed, 10 Dec 2014 14:51:01 +0000 (09:51 -0500)
committerR David Murray <rdmurray@bitdance.com>
Wed, 10 Dec 2014 14:51:01 +0000 (09:51 -0500)
Patch by Chaitanya Agrawal.

Doc/reference/datamodel.rst

index 43abf82766ed0c4da375fa7b5e471947bc9cf790..618c257d013938c157bb0227b411f9de65890f27 100644 (file)
@@ -1926,8 +1926,7 @@ through the container; for mappings, :meth:`__iter__` should be the same as
 
    This method is called when an iterator is required for a container. This method
    should return a new iterator object that can iterate over all the objects in the
-   container.  For mappings, it should iterate over the keys of the container, and
-   should also be made available as the method :meth:`keys`.
+   container.  For mappings, it should iterate over the keys of the container.
 
    Iterator objects also need to implement this method; they are required to return
    themselves.  For more information on iterator objects, see :ref:`typeiter`.