Neaten up example so it can be cut and pasted.
diff --git a/Doc/library/re.rst b/Doc/library/re.rst
index cd3fbb6..6df3106 100644
--- a/Doc/library/re.rst
+++ b/Doc/library/re.rst
@@ -1336,8 +1336,8 @@
         tax := price * 0.05;
     '''
     >>> for token in tokenize(statements):
-    ...     print(token)
-    ...
+            print(token)
+
     Token(typ='ID', value='total', line=1, column=8)
     Token(typ='ASSIGN', value=':=', line=1, column=14)
     Token(typ='ID', value='total', line=1, column=17)