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

@ -9,7 +9,7 @@
this header file lives".
"""
import sys, os, re
import os, re
from distutils.core import Command
from distutils.errors import DistutilsExecError

View file

@ -5,7 +5,7 @@
# created 2002/10/21, Richard Jones
import os, string, getpass
import getpass
import io
import urllib.parse, urllib.request
from warnings import warn

View file

@ -3,7 +3,6 @@
Implements the Distutils 'sdist' command (create a source distribution)."""
import os
import string
import sys
from types import *
from glob import glob

View file

@ -4,7 +4,6 @@
modules in setup scripts."""
import os
import sys
import warnings
# This class is really only used by the "build_ext" command, so it might

View file

@ -4,7 +4,7 @@
that (optionally) takes care of stripping comments, ignoring blank
lines, and joining lines with backslashes."""
import sys, os, io
import sys, io
class TextFile:

View file

@ -36,10 +36,8 @@
# Modified by Giampaolo Rodola' to add TLS support.
#
import os
import sys
import socket
import warnings
from socket import _GLOBAL_DEFAULT_TIMEOUT
__all__ = ["FTP", "error_reply", "error_temp", "error_perm", "error_proto",

View file

@ -25,8 +25,8 @@
show_idlehelp - Create HelpWindow. Called in EditorWindow.help_dialog.
"""
from html.parser import HTMLParser
from os.path import abspath, dirname, isdir, isfile, join
from tkinter import Tk, Toplevel, Frame, Text, Scrollbar, Menu, Menubutton
from os.path import abspath, dirname, isfile, join
from tkinter import Toplevel, Frame, Text, Scrollbar, Menu, Menubutton
from tkinter import font as tkfont
from idlelib.configHandler import idleConf

View file

@ -3,7 +3,6 @@
"""
import sys
import tkinter
from os import path
import warnings
def runningAsOSXApp():

View file

@ -1,8 +1,6 @@
"""Utility functions, node construction macros, etc."""
# Author: Collin Winter
from itertools import islice
# Local imports
from .pgen2 import token
from .pytree import Leaf, Node

View file

@ -30,9 +30,8 @@
# Local imports
from .. import pytree
from .. import patcomp
from ..pgen2 import token
from .. import fixer_base
from ..fixer_util import Name, Call, LParen, RParen, ArgList, Dot
from ..fixer_util import Name, Call, Dot
from .. import fixer_util

View file

@ -10,7 +10,6 @@
"""
# Local imports
from .. import pytree
from .. import fixer_base
from ..fixer_util import Comma, Name, Call

View file

@ -14,7 +14,6 @@
"""
# Local imports
from ..pgen2 import token
from .. import fixer_base
from ..fixer_util import Name, Call, ListComp, in_special_context

View file

@ -31,7 +31,6 @@
# Local imports
from .. import pytree
from ..pgen2 import token
from .. import fixer_base
from ..fixer_util import Name, parenthesize

View file

@ -20,7 +20,7 @@
# Local imports
from .. import fixer_base
from ..pygram import token
from ..fixer_util import Name, syms, Node, Leaf
from ..fixer_util import syms, Node, Leaf
def has_metaclass(parent):

View file

@ -3,7 +3,7 @@
# Local imports
from .. import fixer_base
from ..fixer_util import Name, syms
from ..fixer_util import Name
class FixNonzero(fixer_base.BaseFix):
BM_compatible = True

View file

@ -18,7 +18,7 @@
from .. import pytree
from ..pgen2 import token
from .. import fixer_base
from ..fixer_util import Name, Call, Comma, String, is_tuple
from ..fixer_util import Name, Call, Comma, String
parend_expr = patcomp.compile_pattern(

View file

@ -20,7 +20,6 @@
"""
# Local imports
from ..pgen2 import token
from .. import fixer_base
from ..fixer_util import Name

View file

@ -6,7 +6,6 @@
# Local imports
from lib2to3.fixes.fix_imports import alternates, FixImports
from lib2to3 import fixer_base
from lib2to3.fixer_util import (Name, Comma, FromImport, Newline,
find_indentation, Node, syms)

View file

@ -26,7 +26,6 @@
from .pgen2 import driver, tokenize, token
from .fixer_util import find_root
from . import pytree, pygram
from . import btm_utils as bu
from . import btm_matcher as bm

View file

@ -40,12 +40,10 @@
"""
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)]

View file

@ -119,7 +119,6 @@
"""
import sys
import sre_compile
import sre_parse
try:

View file

@ -95,7 +95,6 @@
from turtledemo import __doc__ as about_turtledemo
import turtle
import time
demo_dir = os.path.dirname(os.path.abspath(__file__))
darwin = sys.platform == 'darwin'

View file

@ -22,7 +22,6 @@
mode as fast as possible.
"""
import math
from turtle import Turtle, mainloop
from time import clock

View file

@ -18,7 +18,6 @@
"""
from turtle import Shape, Turtle, mainloop, Vec2D as Vec
from time import sleep
G = 8

View file

@ -487,7 +487,6 @@ def _netbios_getnode():
# Assume that the uuid_generate functions are broken from 10.5 onward,
# the test can be adjusted when a later version is fixed.
if sys.platform == 'darwin':
import os
if int(os.uname().release.split('.')[0]) >= 9:
_uuid_generate_time = None

View file

@ -8,7 +8,7 @@
"""
import sys, os, time, difflib, argparse
import sys, os, difflib, argparse
from datetime import datetime, timezone
def file_mtime(path):