diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-10 03:26:08 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-10 03:26:08 (GMT) |
commit | 10480940373492652bc285fca3fa74751c271645 (patch) | |
tree | bb1bfed3416120cc371eb884960cf73aad9a957e /Doc/library/tokenize.rst | |
parent | a4815caa7ccf21aa994d0e0eec66873072f0e352 (diff) | |
download | cpython-10480940373492652bc285fca3fa74751c271645.zip cpython-10480940373492652bc285fca3fa74751c271645.tar.gz cpython-10480940373492652bc285fca3fa74751c271645.tar.bz2 |
Move source links to consistent location and remove wordy, big yellow boxes.
Diffstat (limited to 'Doc/library/tokenize.rst')
-rw-r--r-- | Doc/library/tokenize.rst | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/Doc/library/tokenize.rst b/Doc/library/tokenize.rst index d7ae638..9c05439 100644 --- a/Doc/library/tokenize.rst +++ b/Doc/library/tokenize.rst @@ -6,17 +6,13 @@ .. moduleauthor:: Ka Ping Yee .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org> +**Source code:** :source:`Lib/tokenize.py` The :mod:`tokenize` module provides a lexical scanner for Python source code, implemented in Python. The scanner in this module returns comments as tokens as well, making it useful for implementing "pretty-printers," including colorizers for on-screen displays. -.. seealso:: - - Latest version of the :source:`tokenize module Python source code - <Lib/tokenize.py>` - The primary entry point is a :term:`generator`: .. function:: tokenize(readline) |