From 2cdee708e9ec4c8445f2a269b87efb9a148e097f Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 1 May 2011 22:34:31 +0200 Subject: Split combined code/doctest code blocks in two blocks, to enable proper highlighting. --- Doc/tutorial/classes.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index a0f2431..04abcf3 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst @@ -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) ... -- cgit v0.12