From: Jason R. Coombs Date: Sat, 20 Jun 2015 23:13:50 +0000 (-0400) Subject: Remove unused import and remove doctest-only import into doctests. X-Git-Tag: v3.5.0b3~35^2^2^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7cf36387e4a4e7f9686274cdfaeaeddc76ff5902;p=python Remove unused import and remove doctest-only import into doctests. --- diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index 984220729d..3e8a65474e 100644 --- a/Lib/test/test_tokenize.py +++ b/Lib/test/test_tokenize.py @@ -5,6 +5,8 @@ The tests can be really simple. Given a small fragment of source code, print out a table with tokens. The ENDMARKER is omitted for brevity. + >>> import glob + >>> dump_tokens("1 + 1") ENCODING 'utf-8' (0, 0) (0, 0) NUMBER '1' (1, 0) (1, 1) @@ -647,7 +649,7 @@ from tokenize import (tokenize, _tokenize, untokenize, NUMBER, NAME, OP, open as tokenize_open, Untokenizer) from io import BytesIO from unittest import TestCase, mock -import os, sys, glob +import os import token def dump_tokens(s):