Change virtual class name of __iter__ to "object" in order to make it linkable.

This commit is contained in:
Georg Brandl 2008-01-07 09:07:38 +00:00
parent dc55f35f38
commit 66502c11e9
1 changed files with 1 additions and 1 deletions

View File

@ -470,7 +470,7 @@ One method needs to be defined for container objects to provide iteration
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