summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2002-06-04 20:18:24 +0000
committerJeremy Hylton <jeremy@alum.mit.edu>2002-06-04 20:18:24 +0000
commit86d1bd16c0053ee46f0e7d529dec144b611de3ed (patch)
tree1dcfc82f41f74862e4fafbfdedea98c1e70f0e2a
parentfcaddaa4cfd26c0f07bfbb4dbf41760334d5d788 (diff)
downloadpython-setuptools-git-86d1bd16c0053ee46f0e7d529dec144b611de3ed.tar.gz
Remove unused imports caught by pychecker
-rw-r--r--command/bdist_pkgtool.py2
-rw-r--r--command/bdist_sdux.py1
-rw-r--r--filelist.py2
-rw-r--r--unixccompiler.py2
4 files changed, 2 insertions, 5 deletions
diff --git a/command/bdist_pkgtool.py b/command/bdist_pkgtool.py
index 4fd95012..9d6e7dc1 100644
--- a/command/bdist_pkgtool.py
+++ b/command/bdist_pkgtool.py
@@ -7,7 +7,6 @@ Implements the Distutils 'bdist_pkgtool' command (create Solaris pkgtool
distributions)."""
import os, string, sys, pwd, grp
-import glob
from types import *
from distutils.core import Command, DEBUG
from distutils.util import get_platform
@@ -16,7 +15,6 @@ from distutils.errors import *
from distutils.command import bdist_packager
from distutils import sysconfig
from distutils import log
-import compileall
from commands import getoutput
__revision__ = "$Id: bdist_pkgtool.py,v 0.3 mwa "
diff --git a/command/bdist_sdux.py b/command/bdist_sdux.py
index e4765f97..a3cbbb8a 100644
--- a/command/bdist_sdux.py
+++ b/command/bdist_sdux.py
@@ -7,7 +7,6 @@ swinstall depot"""
__revision__ = "$Id: bdist_sdux.py,v 0.2 "
import os, string
-import glob
from types import *
from distutils.core import Command, DEBUG
from distutils.util import get_platform
diff --git a/filelist.py b/filelist.py
index d39c8358..3ed6f032 100644
--- a/filelist.py
+++ b/filelist.py
@@ -11,7 +11,7 @@ and building lists of files.
__revision__ = "$Id$"
-import sys, os, string, re
+import os, string, re
import fnmatch
from types import *
from glob import glob
diff --git a/unixccompiler.py b/unixccompiler.py
index 55a51b32..56d3ee44 100644
--- a/unixccompiler.py
+++ b/unixccompiler.py
@@ -17,7 +17,7 @@ the "typical" Unix-style command-line C compiler:
__revision__ = "$Id$"
-import string, re, os, sys
+import os, sys
from types import *
from copy import copy
from distutils import sysconfig