mirror of https://github.com/python/cpython
Remove unused imports caught by pychecker
This commit is contained in:
parent
cd8a1148e1
commit
332a146127
|
@ -7,7 +7,6 @@ Implements the Distutils 'bdist_pkgtool' command (create Solaris pkgtool
|
||||||
distributions)."""
|
distributions)."""
|
||||||
|
|
||||||
import os, string, sys, pwd, grp
|
import os, string, sys, pwd, grp
|
||||||
import glob
|
|
||||||
from types import *
|
from types import *
|
||||||
from distutils.core import Command, DEBUG
|
from distutils.core import Command, DEBUG
|
||||||
from distutils.util import get_platform
|
from distutils.util import get_platform
|
||||||
|
@ -16,7 +15,6 @@ from distutils.errors import *
|
||||||
from distutils.command import bdist_packager
|
from distutils.command import bdist_packager
|
||||||
from distutils import sysconfig
|
from distutils import sysconfig
|
||||||
from distutils import log
|
from distutils import log
|
||||||
import compileall
|
|
||||||
from commands import getoutput
|
from commands import getoutput
|
||||||
|
|
||||||
__revision__ = "$Id: bdist_pkgtool.py,v 0.3 mwa "
|
__revision__ = "$Id: bdist_pkgtool.py,v 0.3 mwa "
|
||||||
|
|
|
@ -7,7 +7,6 @@ swinstall depot"""
|
||||||
|
|
||||||
__revision__ = "$Id: bdist_sdux.py,v 0.2 "
|
__revision__ = "$Id: bdist_sdux.py,v 0.2 "
|
||||||
import os, string
|
import os, string
|
||||||
import glob
|
|
||||||
from types import *
|
from types import *
|
||||||
from distutils.core import Command, DEBUG
|
from distutils.core import Command, DEBUG
|
||||||
from distutils.util import get_platform
|
from distutils.util import get_platform
|
||||||
|
|
|
@ -11,7 +11,7 @@ and building lists of files.
|
||||||
|
|
||||||
__revision__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import sys, os, string, re
|
import os, string, re
|
||||||
import fnmatch
|
import fnmatch
|
||||||
from types import *
|
from types import *
|
||||||
from glob import glob
|
from glob import glob
|
||||||
|
|
|
@ -17,7 +17,7 @@ the "typical" Unix-style command-line C compiler:
|
||||||
|
|
||||||
__revision__ = "$Id$"
|
__revision__ = "$Id$"
|
||||||
|
|
||||||
import string, re, os, sys
|
import os, sys
|
||||||
from types import *
|
from types import *
|
||||||
from copy import copy
|
from copy import copy
|
||||||
from distutils import sysconfig
|
from distutils import sysconfig
|
||||||
|
|
Loading…
Reference in New Issue