diff options
author | Ka-Ping Yee <ping@zesty.ca> | 2001-03-23 05:22:12 (GMT) |
---|---|---|
committer | Ka-Ping Yee <ping@zesty.ca> | 2001-03-23 05:22:12 (GMT) |
commit | ce7298ab42f40c079092fb79bec7d02c1175e99c (patch) | |
tree | cc65fb64bb03babde5a7f3814467b40425f256cd /Doc | |
parent | c608fb6389da91e159b7e7f55c11ccb9e64f3623 (diff) | |
download | cpython-ce7298ab42f40c079092fb79bec7d02c1175e99c.zip cpython-ce7298ab42f40c079092fb79bec7d02c1175e99c.tar.gz cpython-ce7298ab42f40c079092fb79bec7d02c1175e99c.tar.bz2 |
Explain the difference between NL and NEWLINE.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libtokenize.tex | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Doc/lib/libtokenize.tex b/Doc/lib/libtokenize.tex index 3c5e8ef..205407c 100644 --- a/Doc/lib/libtokenize.tex +++ b/Doc/lib/libtokenize.tex @@ -43,5 +43,8 @@ passed to the \var{tokeneater} function by \function{tokenize()}: Token value used to indicate a comment. \end{datadesc} \begin{datadesc}{NL} - Token value used to indicate a newline. + Token value used to indicate a non-terminating newline. The NEWLINE + token indicates the end of a logical line of Python code; NL tokens + are generated when a logical line of code is continued over multiple + physical lines. \end{datadesc} |