]> granicus.if.org Git - python/commitdiff
bpo-31394: Make tokenize.rst PEP 8-compliant (GH-3526)
authorMariatta <Mariatta@users.noreply.github.com>
Wed, 13 Sep 2017 04:00:00 +0000 (21:00 -0700)
committerGitHub <noreply@github.com>
Wed, 13 Sep 2017 04:00:00 +0000 (21:00 -0700)
The last commit contained lines longer than 80 characters.

Doc/library/tokenize.rst

index e6ddc0579217b0f27315060cdab2b3102ec080b1..02a0428f21bc769835ba970d16ec1381cf35d0b8 100644 (file)
@@ -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
 colorizers for on-screen displays.
 
-To simplify token stream handling, all :ref:`operator <operators>` and :ref:`delimiter <delimiters>`
-tokens and :data:`Ellipsis` are returned using the generic :data:`~token.OP` token type.  The exact
+To simplify token stream handling, all :ref:`operator <operators>` and
+: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
 :term:`named tuple` returned from :func:`tokenize.tokenize`.