Patch #2167 from calvin: Remove unused imports

This commit is contained in:
Christian Heimes 2008-02-23 17:40:11 +00:00
parent 19aff0c90a
commit c5f05e45cf
203 changed files with 77 additions and 243 deletions

View File

@ -14,7 +14,6 @@ import os
import posixpath
import BaseHTTPServer
import urllib
import urlparse
import cgi
import shutil
import mimetypes

View File

@ -4,7 +4,6 @@ various DB flags, etc.
"""
import os
import sys
import errno
import shutil
import string

View File

@ -3,7 +3,7 @@ Test cases adapted from the test_bsddb.py module in Python's
regression test suite.
"""
import sys, os, string
import os, string
import unittest
import tempfile

View File

@ -1,6 +1,6 @@
import unittest
import tempfile
import sys, os, glob
import os, glob
try:
# For Pythons w/distutils pybsddb

View File

@ -1,5 +1,5 @@
import sys, os, string
import os, string
import unittest
import glob
import tempfile

View File

@ -2,9 +2,8 @@
TestCases for checking dbShelve objects.
"""
import sys, os, string
import os, string
import tempfile, random
from pprint import pprint
from types import *
import unittest

View File

@ -20,7 +20,7 @@
#
# $Id$
import sys, os, re
import os, re
import tempfile
import shutil
try:

View File

@ -3,7 +3,6 @@ is closed before its DB objects.
"""
import os
import sys
import tempfile
import glob
import unittest

View File

@ -2,9 +2,8 @@
TestCases for checking set_get_returns_none.
"""
import sys, os, string
import os, string
import tempfile
from pprint import pprint
import unittest
try:

View File

@ -1,10 +1,8 @@
"""TestCases for using the DB.join and DBCursor.join_item methods.
"""
import sys, os, string
import os
import tempfile
import time
from pprint import pprint
try:
from threading import Thread, currentThread

View File

@ -2,10 +2,7 @@
TestCases for testing the locking sub-system.
"""
import os
from pprint import pprint
import shutil
import sys
import tempfile
import time

View File

@ -2,7 +2,6 @@
"""
import os
import sys
import unittest
import tempfile

View File

@ -1,5 +1,5 @@
import sys, os, string
import os
import pickle
try:
import cPickle

View File

@ -2,7 +2,7 @@
TestCases for exercising a Queue DB.
"""
import sys, os, string
import os, string
import tempfile
from pprint import pprint
import unittest

View File

@ -2,7 +2,6 @@
"""
import os
import sys
import errno
import tempfile
from pprint import pprint

View File

@ -1,6 +1,5 @@
import unittest
import os
import sys
import tempfile
import glob
@ -10,8 +9,6 @@ try:
except ImportError:
from bsddb import db
from test_all import verbose
class DBSequenceTest(unittest.TestCase):
def setUp(self):

View File

@ -7,7 +7,6 @@ import time
import errno
import shutil
import tempfile
from pprint import pprint
from random import random
try:

View File

@ -29,7 +29,6 @@ from compiler.ast import *
import parser
import symbol
import token
import sys
class WalkerError(StandardError):
pass

View File

@ -1,4 +1,4 @@
import glob, os, sys, unittest, getopt, time
import os, sys, unittest, getopt, time
use_resources = []

View File

@ -1,5 +1,4 @@
import unittest
import sys
from ctypes import *

View File

@ -1,5 +1,5 @@
import unittest
import os, sys
import sys
from ctypes import *
from ctypes.util import find_library
from ctypes.test import is_resource_enabled

View File

@ -1,4 +1,3 @@
import sys, os
import unittest
from ctypes import *

View File

@ -1,6 +1,6 @@
from ctypes import *
import sys, unittest
import os, StringIO
import os
from ctypes.util import find_library
from ctypes.test import is_resource_enabled

View File

@ -1,6 +1,6 @@
from ctypes import *
import unittest
import sys, struct
import struct
def valid_ranges(*types):
# given a sequence of numeric types, collect their _type_

View File

@ -7,7 +7,7 @@ to a sane state so you can read the resulting traceback.
"""
import sys, curses
import curses
def wrapper(func, *args, **kwds):
"""Wrapper function that initializes curses and calls another function,

View File

@ -16,7 +16,7 @@ for the Borland C++ compiler.
__revision__ = "$Id$"
import sys, os
import os
from distutils.errors import \
DistutilsExecError, DistutilsPlatformError, \
CompileError, LibError, LinkError, UnknownFileError

View File

@ -7,7 +7,7 @@ distribution)."""
__revision__ = "$Id$"
import os, string
import os
from types import *
from distutils.core import Command
from distutils.errors import *

View File

@ -11,7 +11,7 @@ __revision__ = "$Id$"
import os
from distutils.core import Command
from distutils.util import get_platform
from distutils.dir_util import create_tree, remove_tree, ensure_relative
from distutils.dir_util import remove_tree, ensure_relative
from distutils.errors import *
from distutils.sysconfig import get_python_version
from distutils import log

View File

@ -7,7 +7,7 @@
Implements the bdist_msi command.
"""
import sys, os, string
import sys, os
from distutils.core import Command
from distutils.util import get_platform
from distutils.dir_util import remove_tree

View File

@ -8,7 +8,6 @@ distributions)."""
__revision__ = "$Id$"
import sys, os, string
import glob
from types import *
from distutils.core import Command
from distutils.debug import DEBUG

View File

@ -6,7 +6,7 @@ Implements the Distutils 'build_py' command."""
__revision__ = "$Id$"
import sys, string, os
import string, os
from types import *
from glob import glob

View File

@ -6,7 +6,7 @@ Implements the Distutils 'build_scripts' command."""
__revision__ = "$Id$"
import sys, os, re
import os, re
from stat import ST_MODE
from distutils import sysconfig
from distutils.core import Command

View File

@ -17,7 +17,6 @@ from distutils.errors import DistutilsPlatformError
from distutils.file_util import write_file
from distutils.util import convert_path, subst_vars, change_root
from distutils.errors import DistutilsOptionError
from glob import glob
if sys.version < "2.2":
WINDOWS_SCHEME = {

View File

@ -7,7 +7,6 @@ files to the Python include directory."""
__revision__ = "$Id$"
import os
from distutils.core import Command

View File

@ -2,7 +2,7 @@
__revision__ = "$Id$"
import sys, os, string
import os
from types import IntType
from distutils.core import Command
from distutils.errors import DistutilsOptionError

View File

@ -7,7 +7,7 @@ Implements the Distutils 'register' command (register with the repository).
__revision__ = "$Id$"
import sys, os, string, urllib2, getpass, urlparse
import os, string, urllib2, getpass, urlparse
import StringIO, ConfigParser
from distutils.core import Command

View File

@ -6,7 +6,7 @@ Implements the Distutils 'sdist' command (create a source distribution)."""
__revision__ = "$Id$"
import sys, os, string
import os, string
from types import *
from glob import glob
from distutils.core import Command

View File

@ -11,7 +11,6 @@ __revision__ = "$Id$"
import os, string, re
import fnmatch
from types import *
from glob import glob
from distutils.util import convert_path
from distutils.errors import DistutilsTemplateError, DistutilsInternalError
from distutils import log

View File

@ -3,10 +3,8 @@
import distutils.cmd
import distutils.dist
import os
import shutil
import StringIO
import sys
import tempfile
import unittest
from test.test_support import TESTFN

View File

@ -2,7 +2,6 @@
from distutils import sysconfig
import os
import sys
import unittest
from test.test_support import TESTFN

View File

@ -17,7 +17,6 @@ __revision__ = "$Id$"
import os, sys
from types import StringType, NoneType
from copy import copy
from distutils import sysconfig
from distutils.dep_util import newer

View File

@ -35,7 +35,6 @@ __all__ = [
'header_encode',
]
import re
from binascii import b2a_base64, a2b_base64
from email.utils import fix_eols

View File

@ -27,7 +27,6 @@ import random
import socket
import urllib
import warnings
from cStringIO import StringIO
from email._parseaddr import quote
from email._parseaddr import AddressList as _AddressList

View File

@ -2,7 +2,6 @@ import _hotshot
import os.path
import parser
import symbol
import sys
from _hotshot import \
WHAT_ENTER, \

View File

@ -1,7 +1,6 @@
import errno
import hotshot
import hotshot.stats
import os
import sys
import test.pystone

View File

@ -66,7 +66,6 @@ Req-started-unread-response _CS_REQ_STARTED <response_class>
Req-sent-unread-response _CS_REQ_SENT <response_class>
"""
import errno
import mimetools
import socket
from urlparse import urlsplit

View File

@ -30,7 +30,6 @@ Each function will be called at most once for each event.
"""
import sys
import os
import string
import re
import Tkinter

View File

@ -20,7 +20,6 @@ barrier, in particular frame and traceback objects.
"""
import sys
import types
import rpc
import Debugger

View File

@ -15,7 +15,6 @@
# - optimize tree redraw after expand of subnode
import os
import sys
from Tkinter import *
import imp

View File

@ -1,4 +1,3 @@
import sys
import string
from Tkinter import *
from Delegator import Delegator

View File

@ -11,7 +11,7 @@ Refer to comments in EditorWindow autoindent code for details.
"""
from Tkinter import *
import tkMessageBox, tkColorChooser, tkFont
import string, copy
import string
from configHandler import idleConf
from dynOptionMenuWidget import DynOptionMenu

View File

@ -3,7 +3,7 @@ Dialog for building Tkinter accelerator key bindings
"""
from Tkinter import *
import tkMessageBox
import string, os
import string
class GetKeysDialog(Toplevel):
def __init__(self,parent,title,action,currentKeySequences):

View File

@ -1,5 +1,4 @@
import sys
import os
import linecache
import time
import socket

View File

@ -26,7 +26,6 @@ askstring -- get a string from the user
'''
from Tkinter import *
import os
class Dialog(Toplevel):

View File

@ -27,7 +27,7 @@ Copyright (C) 2001-2007 Vinay Sajip. All Rights Reserved.
To use, simply 'import logging' and log away!
"""
import sys, logging, socket, types, os, string, cPickle, struct, time, glob
import logging, socket, types, os, string, cPickle, struct, time, glob
from stat import ST_DEV, ST_INO
try:

View File

@ -6,8 +6,8 @@ module as os.path.
"""
import os
import stat
import sys
import stat
import genericpath
from genericpath import *

View File

@ -6,7 +6,6 @@ There are two classes:
only suitable for the simplest of AppleEvent servers.
"""
import sys
import traceback
import MacOS
from Carbon import AE

View File

@ -13,18 +13,14 @@ coerce(x, wanted_sample) coerces a python object to another python object
#
import struct
import string
import types
from string import strip
from types import *
from Carbon import AE
from Carbon.AppleEvents import *
import MacOS
import Carbon.File
import StringIO
import aetypes
from aetypes import mkenum, ObjectSpecifier
import os
# These ones seem to be missing from AppleEvents
# (they're in AERegistry.h)

View File

@ -5,7 +5,7 @@
# but mac-style for MacPython, whether running on OS9 or OSX.
#
import sys, os
import os
Error = "bgenlocations.Error"
#

View File

@ -7,9 +7,7 @@ copy(src, dst) - Full copy of 'src' to 'dst'
from Carbon import Res
from Carbon import File, Files
import os
import sys
import MacOS
import time
try:
openrf = MacOS.openrf
except AttributeError:

View File

@ -4,7 +4,6 @@ Do not import directly, use urllib instead."""
import string
import urllib
import os
__all__ = ["url2pathname","pathname2url"]

View File

@ -21,7 +21,7 @@
# misrepresented as being the original software.
# 3. This notice may not be removed or altered from any source distribution.
import os, unittest
import unittest
import sqlite3 as sqlite
class CollationTests(unittest.TestCase):

View File

@ -55,7 +55,7 @@ PROTOCOL_SSLv23
PROTOCOL_TLSv1
"""
import os, sys, textwrap
import textwrap
import _ssl # if we can't import it, let the error propagate

View File

@ -13,7 +13,6 @@ the same application, the present example should work just fine. DC
"""
import os, sys, time, thread, unittest
from test.test_support import TestSkipped
LONGSLEEP = 2
SHORTSLEEP = 0.5

View File

@ -5,7 +5,6 @@ Tests common to list and UserList.UserList
import sys
import os
import unittest
from test import test_support, seq_tests
class CommonTest(seq_tests.CommonTest):

View File

@ -3,7 +3,6 @@ Tests common to tuple, list and UserList.UserList
"""
import unittest
from test import test_support
import sys
# Various iterables

View File

@ -7,7 +7,7 @@ This should generate Barry's example, modulo some quotes and newlines.
"""
import unittest, sys, StringIO
import unittest, StringIO
from test.test_support import run_unittest
import warnings

View File

@ -1,5 +1,5 @@
import unittest
from test.test_support import verbose, run_unittest
from test.test_support import run_unittest
import sys
import warnings

View File

@ -3,7 +3,6 @@
"""Unit tests for abc.py."""
import sys
import unittest
from test import test_support

View File

@ -5,7 +5,6 @@ import macostools
import Carbon.File
import MacOS
import os
import sys
from test import test_support
import struct
import applesingle

View File

@ -6,7 +6,7 @@
import unittest
from test import test_support
from weakref import proxy
import array, cStringIO, math
import array, cStringIO
from cPickle import loads, dumps
class ArraySubclass(array.array):

View File

@ -4,7 +4,7 @@ The file 185test.db found in Lib/test/ is for testing purposes with this
testing suite.
"""
from test.test_support import verbose, run_unittest, findfile
from test.test_support import run_unittest, findfile
import unittest
import bsddb185
import anydbm

View File

@ -1,7 +1,6 @@
"Test the functionality of Python classes implementing operators."
import unittest
import sys
from test import test_support

View File

@ -5,7 +5,6 @@ Original by Michael Schneider
"""
from test import test_support
import cmd
import sys
@ -170,7 +169,7 @@ def test_main(verbose=None):
from test import test_support, test_cmd
test_support.run_doctest(test_cmd, verbose)
import trace, sys,re,StringIO
import trace, sys
def test_coverage(coverdir):
tracer=trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,],
trace=0, count=1)

View File

@ -1,5 +1,4 @@
import copy
import sys
import warnings
import unittest
from test.test_support import run_unittest, TestFailed

View File

@ -1,4 +1,3 @@
import sys
import unittest
from test import test_support

View File

@ -52,7 +52,8 @@ class CompilerTest(unittest.TestCase):
compiler.compile(buf, basename, "exec")
except Exception, e:
args = list(e.args)
args[0] += "[in file %s]" % basename
args.append("in file %s]" % basename)
#args[0] += "[in file %s]" % basename
e.args = tuple(args)
raise

View File

@ -1,6 +1,5 @@
"""Unit tests for the copy module."""
import sys
import copy
import copy_reg

View File

@ -1,5 +1,4 @@
import cPickle
import unittest
from cStringIO import StringIO
from test.pickletester import AbstractPickleTests, AbstractPickleModuleTests
from test import test_support

View File

@ -4,7 +4,6 @@ See http://www.zope.org/Members/fdrake/DateTimeWiki/TestCases
"""
import os
import sys
import pickle
import cPickle
import unittest

View File

@ -3,7 +3,6 @@
Roger E. Masse
"""
import os
import random
import dbm
from dbm import error
from test.test_support import verbose, verify, TestSkipped, TESTFN

View File

@ -4,7 +4,6 @@ from test import test_support, seq_tests
from weakref import proxy
import copy
import cPickle as pickle
from cStringIO import StringIO
import random
import os

View File

@ -1,7 +1,7 @@
import unittest
from test import test_support
import sys, UserDict, cStringIO, random, string
import UserDict, random, string
class DictTest(unittest.TestCase):

View File

@ -1,6 +1,6 @@
# Minimal tests for dis module
from test.test_support import verbose, run_unittest
from test.test_support import run_unittest
import unittest
import sys
import dis

View File

@ -2418,7 +2418,7 @@ def test_main():
from test import test_doctest
test_support.run_doctest(test_doctest, verbosity=True)
import trace, sys, re, StringIO
import trace, sys
def test_coverage(coverdir):
tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,],
trace=0, count=1)

View File

@ -3,7 +3,6 @@
# Create a bunch of threads, let each do some work, wait until all are done
from test.test_support import verbose
import random
import dummy_threading as _threading
import time

View File

@ -1,7 +1,6 @@
# Copyright (C) 2001,2002 Python Software Foundation
# email package unit tests
import unittest
# The specific tests now live in Lib/email/test
from email.test.test_email import suite
from test import test_support

View File

@ -1,7 +1,6 @@
# Copyright (C) 2001-2006 Python Software Foundation
# email package unit tests
import unittest
# The specific tests now live in Lib/email/test
from email.test.test_email_renamed import suite
from test import test_support

View File

@ -1,7 +1,6 @@
#! /usr/bin/env python
"""test script for a few new invalid token catches"""
import os
import unittest
from test import test_support

View File

@ -1,4 +1,4 @@
from test.test_support import verify, verbose, TestFailed, sortdict
from test.test_support import verify, TestFailed, sortdict
from UserList import UserList
from UserDict import UserDict

View File

@ -6,7 +6,7 @@ Nick Mathewson
import unittest
from test.test_support import verbose, TESTFN, run_unittest
from test.test_support import unlink as safe_unlink
import sys, os, re
import sys, re
from StringIO import StringIO
from fileinput import FileInput, hook_encoded

View File

@ -1,7 +1,7 @@
"""Tests for Lib/fractions.py."""
from decimal import Decimal
from test.test_support import run_unittest, verbose
from test.test_support import run_unittest
import math
import operator
import fractions

View File

@ -1,8 +1,7 @@
import unittest
from test import test_support
import sys
import warnings, re
import warnings
warnings.filterwarnings("ignore",
category=DeprecationWarning,
message=".*integer argument expected, got float",

View File

@ -4,7 +4,7 @@
import unittest
from test import test_support
import sys, os
import os
import gzip

View File

@ -2,7 +2,6 @@
import HTMLParser
import pprint
import sys
import unittest
from test import test_support

View File

@ -1,6 +1,5 @@
import httplib
import StringIO
import sys
import socket
from unittest import TestCase

View File

@ -6,7 +6,7 @@
from test.test_support import verbose, unlink, findfile
import imgfile, uu, os
import imgfile, uu
def main():

View File

@ -1,5 +1,4 @@
import imp
import thread
import unittest
from test import test_support

View File

@ -1,7 +1,6 @@
import unittest
from test import test_support
import operator
import sys
from sys import maxint
maxsize = test_support.MAX_Py_ssize_t
minsize = -maxsize-1

View File

@ -4,13 +4,9 @@ test_support.requires('audio')
from test.test_support import findfile, TestSkipped, run_unittest
import errno
import fcntl
import linuxaudiodev
import os
import sys
import select
import sunaudio
import time
import audioop
import unittest

Some files were not shown because too many files have changed in this diff Show More