Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
ea0f7c26
Commit
ea0f7c26
authored
Sep 12, 2017
by
Mariatta
Committed by
GitHub
Sep 12, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-31394: Make tokenize.rst PEP 8-compliant (GH-3526)
The last commit contained lines longer than 80 characters.
parent
5f8fbf91
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
Doc/library/tokenize.rst
Doc/library/tokenize.rst
+3
-2
No files found.
Doc/library/tokenize.rst
View file @
ea0f7c26
...
@@ -16,8 +16,9 @@ implemented in Python. The scanner in this module returns comments as tokens
...
@@ -16,8 +16,9 @@ implemented in Python. The scanner in this module returns comments as tokens
as well, making it useful for implementing "pretty-printers," including
as well, making it useful for implementing "pretty-printers," including
colorizers for on-screen displays.
colorizers for on-screen displays.
To simplify token stream handling, all :ref:`operator <operators>` and :ref:`delimiter <delimiters>`
To simplify token stream handling, all :ref:`operator <operators>` and
tokens and :data:`Ellipsis` are returned using the generic :data:`~token.OP` token type. The exact
:ref:`delimiter <delimiters>` tokens and :data:`Ellipsis` are returned using
the generic :data:`~token.OP` token type. The exact
type can be determined by checking the ``exact_type`` property on the
type can be determined by checking the ``exact_type`` property on the
:term:`named tuple` returned from :func:`tokenize.tokenize`.
:term:`named tuple` returned from :func:`tokenize.tokenize`.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment