remove unused imports (closes #12432)

A patch from Vincent Legoll.
This commit is contained in:
Benjamin Peterson 2011-06-28 10:25:04 -05:00
parent e4a51e6543
commit 274271d1ae
7 changed files with 2 additions and 6 deletions

View File

@ -23,7 +23,6 @@ hexbin(inputfilename, outputfilename)
#
import io
import os
import sys
import struct
import binascii

View File

@ -31,7 +31,6 @@ import tempfile
import time
import tokenize
import traceback
import types
def reset():
"""Return a string that resets the CGI and browser to a known state."""

View File

@ -2,7 +2,6 @@
import sys
from functools import wraps
from warnings import warn
__all__ = ["contextmanager", "closing", "ContextDecorator"]

View File

@ -1,5 +1,6 @@
"""Filename globbing utility."""
import sys
import os
import re
import fnmatch

View File

@ -33,7 +33,6 @@ import sys
import os
import types
import itertools
import string
import re
import imp
import tokenize

View File

@ -7,7 +7,7 @@
__revision__ = "$Id$"
import string, re
import re
__all__ = ['TextWrapper', 'wrap', 'fill', 'dedent']

View File

@ -108,7 +108,6 @@ import tkinter as TK
import types
import math
import time
import os
import inspect
from os.path import isfile, split, join