summaryrefslogtreecommitdiff
path: root/Lib/tokenize.py
diff options
context:
space:
mode:
authorAndrew Carr <andrewnc@users.noreply.github.com>2019-05-30 13:31:51 -0600
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-30 12:31:51 -0700
commit1e36f75d634383eb243aa1798c0f2405c9ceb5d4 (patch)
tree5f233c2e74dcfbc0ed4e15ace8c8e15c788ed64b /Lib/tokenize.py
parent1b69c09248c4b51962933e3551f1ae6fc11369b6 (diff)
downloadcpython-git-1e36f75d634383eb243aa1798c0f2405c9ceb5d4.tar.gz
bpo-5028: fix doc bug for tokenize (GH-11683)
https://bugs.python.org/issue5028
Diffstat (limited to 'Lib/tokenize.py')
-rw-r--r--Lib/tokenize.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py
index 0f9d5dd554..738fb71d18 100644
--- a/Lib/tokenize.py
+++ b/Lib/tokenize.py
@@ -415,7 +415,7 @@ def tokenize(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
- logical line; continuation lines are included.
+ physical line; continuation lines are included.
The first token sequence will always be an ENCODING token
which tells you which encoding was used to decode the bytes stream.