Commit 2cdee708 authored by Georg Brandl's avatar Georg Brandl

Split combined code/doctest code blocks in two blocks, to enable proper highlighting.

parent 90c3fb6e
......@@ -754,6 +754,8 @@ returns an object with a :meth:`__next__` method. If the class defines
self.index = self.index - 1
return self.data[self.index]
::
>>> rev = Reverse('spam')
>>> iter(rev)
<__main__.Reverse object at 0x00A1DB50>
......@@ -782,6 +784,8 @@ easy to create::
for index in range(len(data)-1, -1, -1):
yield data[index]
::
>>> for char in reverse('golf'):
... print(char)
...
......
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