From: Greg Ward Date: Sun, 3 Oct 1999 21:07:21 +0000 (+0000) Subject: Don't import what we don't use. X-Git-Tag: v1.6a1~841 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=455eb616488e73c6eb69ef4ec9121cdf94d126a0;p=thirdparty%2FPython%2Fcpython.git Don't import what we don't use. --- diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py index 3a7a43bb1eb3..4067ca4cd6a8 100644 --- a/Lib/distutils/command/build_py.py +++ b/Lib/distutils/command/build_py.py @@ -12,7 +12,7 @@ from glob import glob from distutils.core import Command from distutils.errors import * -from distutils.util import mkpath, newer, make_file, copy_file +from distutils.util import mkpath, copy_file class BuildPy (Command):