]> granicus.if.org Git - python/commitdiff
Remove unused imports caught by pychecker
authorJeremy Hylton <jeremy@alum.mit.edu>
Tue, 4 Jun 2002 20:18:24 +0000 (20:18 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Tue, 4 Jun 2002 20:18:24 +0000 (20:18 +0000)
Lib/distutils/command/bdist_pkgtool.py
Lib/distutils/command/bdist_sdux.py
Lib/distutils/filelist.py
Lib/distutils/unixccompiler.py

index 4fd95012a2bc06f58d3d012998b9133027b760b1..9d6e7dc1100a63261ffbf142e3c79cf374616398 100644 (file)
@@ -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 "
index e4765f97df6b133908541f6d0c977ed00ae3384d..a3cbbb8a3fdf4f8e3162e9f2ddc74b35ba9b46ab 100644 (file)
@@ -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
index d39c835869bac8c97f839503df47576af85bbf01..3ed6f03291cfa67e88e5ca7470209f1edf2e1859 100644 (file)
@@ -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
index 55a51b320161c1e0b2d3718f2fececd2550b7fb1..56d3ee44cbdd66b32d5debe14348a0f86dfa51da 100644 (file)
@@ -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