summaryrefslogtreecommitdiffstats
path: root/Lib/lib2to3/pgen2
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2019-05-30 22:06:32 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-30 22:06:32 (GMT)
commit2a58b0636d1f620f8a85a2e4c030cc10551936a5 (patch)
tree816d10b4fd68438716a0e8fbadebf2b43369bc92 /Lib/lib2to3/pgen2
parenteea47e09394dfb64d3a59a601d947d25bb1bdc96 (diff)
downloadcpython-2a58b0636d1f620f8a85a2e4c030cc10551936a5.zip
cpython-2a58b0636d1f620f8a85a2e4c030cc10551936a5.tar.gz
cpython-2a58b0636d1f620f8a85a2e4c030cc10551936a5.tar.bz2
bpo-5028: Fix up rest of documentation for tokenize documenting line (GH-13686)
https://bugs.python.org/issue5028
Diffstat (limited to 'Lib/lib2to3/pgen2')
-rw-r--r--Lib/lib2to3/pgen2/tokenize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/lib2to3/pgen2/tokenize.py b/Lib/lib2to3/pgen2/tokenize.py
index 0f9fde3..7924ff3 100644
--- a/Lib/lib2to3/pgen2/tokenize.py
+++ b/Lib/lib2to3/pgen2/tokenize.py
@@ -346,7 +346,7 @@ def generate_tokens(readline):
column where the token begins in the source; a 2-tuple (erow, ecol) of
ints specifying the row and column where the token ends in the source;
and the line on which the token was found. The line passed is the
- physical line; continuation lines are included.
+ physical line.
"""
lnum = parenlev = continued = 0
contstr, needcont = '', 0