commit | 9c47d778f7d9e166c18d8b86f84a2065126c06c6 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Fri May 13 01:03:50 2011 -0700 |
committer | Raymond Hettinger <python@rcn.com> | Fri May 13 01:03:50 2011 -0700 |
tree | 24cd683005f9d300b9f3a500bd13db631944e250 | |
parent | 5166375045021dfb2944efee0f63d60b36dfdf58 [diff] [blame] |
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)