diff options
author | Anthony Sottile <asottile@umich.edu> | 2019-05-30 22:06:32 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-05-30 22:06:32 (GMT) |
commit | 2a58b0636d1f620f8a85a2e4c030cc10551936a5 (patch) | |
tree | 816d10b4fd68438716a0e8fbadebf2b43369bc92 /Doc/library/tokenize.rst | |
parent | eea47e09394dfb64d3a59a601d947d25bb1bdc96 (diff) | |
download | cpython-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 'Doc/library/tokenize.rst')
-rw-r--r-- | Doc/library/tokenize.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/tokenize.rst b/Doc/library/tokenize.rst index c89d3d4..b208ba4 100644 --- a/Doc/library/tokenize.rst +++ b/Doc/library/tokenize.rst @@ -39,8 +39,8 @@ 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 *physical* line; continuation lines are included. The 5 tuple is - returned as a :term:`named tuple` with the field names: + is the *physical* line. The 5 tuple is returned as a :term:`named tuple` + with the field names: ``type string start end line``. The returned :term:`named tuple` has an additional property named |