summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-09-09 04:32:39 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-09-09 04:32:39 (GMT)
commit6c60d099e5ed97ee0026687c1ec3401cca49c0c2 (patch)
tree09c77b969f4c41f95583d5c80786208e03d60bfc /Doc
parent44d7b6ad60c151d2a265c326c1f7cf26d3c9dc18 (diff)
downloadcpython-6c60d099e5ed97ee0026687c1ec3401cca49c0c2.zip
cpython-6c60d099e5ed97ee0026687c1ec3401cca49c0c2.tar.gz
cpython-6c60d099e5ed97ee0026687c1ec3401cca49c0c2.tar.bz2
Improve the repr for the TokenInfo named tuple.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/tokenize.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/tokenize.rst b/Doc/library/tokenize.rst
index 446d3bb..dbd01c4 100644
--- a/Doc/library/tokenize.rst
+++ b/Doc/library/tokenize.rst
@@ -111,7 +111,7 @@ function it uses to do this is available:
return fp.read()
-Example of a script re-writer that transforms float literals into Decimal
+Example of a script rewriter that transforms float literals into Decimal
objects::
from tokenize import tokenize, untokenize, NUMBER, STRING, NAME, OP