mirror of https://github.com/python/cpython.git
Split combined code/doctest code blocks in two blocks, to enable proper highlighting.
This commit is contained in:
parent
90c3fb6e76
commit
2cdee708e9
|
@ -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)
|
||||
...
|
||||
|
|
Loading…
Reference in New Issue