diff options
author | Andrew Carr <andrewnc@users.noreply.github.com> | 2019-05-30 19:31:51 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-05-30 19:31:51 (GMT) |
commit | 1e36f75d634383eb243aa1798c0f2405c9ceb5d4 (patch) | |
tree | 5f233c2e74dcfbc0ed4e15ace8c8e15c788ed64b /Lib/tokenize.py | |
parent | 1b69c09248c4b51962933e3551f1ae6fc11369b6 (diff) | |
download | cpython-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 'Lib/tokenize.py')
-rw-r--r-- | Lib/tokenize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/tokenize.py b/Lib/tokenize.py index 0f9d5dd..738fb71 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. |