summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorAndrew Carr <andrewnc@users.noreply.github.com>2019-05-30 19:31:51 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-05-30 19:31:51 (GMT)
commit1e36f75d634383eb243aa1798c0f2405c9ceb5d4 (patch)
tree5f233c2e74dcfbc0ed4e15ace8c8e15c788ed64b /Doc
parent1b69c09248c4b51962933e3551f1ae6fc11369b6 (diff)
downloadcpython-1e36f75d634383eb243aa1798c0f2405c9ceb5d4.zip
cpython-1e36f75d634383eb243aa1798c0f2405c9ceb5d4.tar.gz
cpython-1e36f75d634383eb243aa1798c0f2405c9ceb5d4.tar.bz2
bpo-5028: fix doc bug for tokenize (GH-11683)
https://bugs.python.org/issue5028
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 111289c..c89d3d4 100644
--- a/Doc/library/tokenize.rst
+++ b/Doc/library/tokenize.rst
@@ -39,7 +39,7 @@ The primary entry point is a :term:`generator`:
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 (the last tuple item)
- is the *logical* line; continuation lines are included. The 5 tuple is
+ is the *physical* line; continuation lines are included. The 5 tuple is
returned as a :term:`named tuple` with the field names:
``type string start end line``.