Commit c1f50e67 authored by Georg Brandl's avatar Georg Brandl

Fix var name.

parent 686da73b
...@@ -671,7 +671,7 @@ available. They are listed here in alphabetical order. ...@@ -671,7 +671,7 @@ available. They are listed here in alphabetical order.
.. function:: next(iterator[, default]) .. function:: next(iterator[, default])
Retrieve the next item from the *iterable* by calling its :meth:`__next__` Retrieve the next item from the *iterator* by calling its :meth:`__next__`
method. If *default* is given, it is returned if the iterator is exhausted, method. If *default* is given, it is returned if the iterator is exhausted,
otherwise :exc:`StopIteration` is raised. otherwise :exc:`StopIteration` is raised.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment