[Python-checkins] r64037 - python/trunk/Doc/library/tokenize.rst

georg.brandl python-checkins at python.org
Sun Jun 8 10:59:38 CEST 2008


Author: georg.brandl
Date: Sun Jun  8 10:59:38 2008
New Revision: 64037

Log:
Argh, I read it wrong. Reverted 64036 and added a clarifying remark.


Modified:
   python/trunk/Doc/library/tokenize.rst

Modified: python/trunk/Doc/library/tokenize.rst
==============================================================================
--- python/trunk/Doc/library/tokenize.rst	(original)
+++ python/trunk/Doc/library/tokenize.rst	Sun Jun  8 10:59:38 2008
@@ -27,8 +27,8 @@
    string; a 2-tuple ``(srow, scol)`` of ints specifying the row and 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,
-   that is, continuation lines are not handled specially.
+   line on which the token was found.  The line passed (the last tuple item) is
+   the *logical* line; continuation lines are included.
 
    .. versionadded:: 2.2
 


More information about the Python-checkins mailing list