Removed unused imports.

This commit is contained in:
Serhiy Storchaka 2016-04-25 00:12:32 +03:00
parent a6f26c1d34
commit ccd047ea4b
26 changed files with 11 additions and 31 deletions

View file

@ -40,12 +40,10 @@ Instances of this class have the following instance variables:
"""
import io
import os
import sys
import importlib.util
import tokenize
from token import NAME, DEDENT, OP
from operator import itemgetter
__all__ = ["readmodule", "readmodule_ex", "Class", "Function"]
@ -328,6 +326,7 @@ def _getname(g):
def _main():
# Main program for testing.
import os
from operator import itemgetter
mod = sys.argv[1]
if os.path.exists(mod):
path = [os.path.dirname(mod)]