[Python-checkins] r59811 - python/trunk/Doc/library/stdtypes.rst

georg.brandl python-checkins at python.org
Mon Jan 7 10:07:39 CET 2008


Author: georg.brandl
Date: Mon Jan  7 10:07:38 2008
New Revision: 59811

Modified:
   python/trunk/Doc/library/stdtypes.rst
Log:
Change virtual class name of __iter__ to "object" in order to make it linkable.


Modified: python/trunk/Doc/library/stdtypes.rst
==============================================================================
--- python/trunk/Doc/library/stdtypes.rst	(original)
+++ python/trunk/Doc/library/stdtypes.rst	Mon Jan  7 10:07:38 2008
@@ -470,7 +470,7 @@
 support:
 
 
-.. method:: container.__iter__()
+.. method:: object.__iter__()
 
    Return an iterator object.  The object is required to support the iterator
    protocol described below.  If a container supports different types of


More information about the Python-checkins mailing list