summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/build_py.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>1999-10-03 21:07:21 (GMT)
committerGreg Ward <gward@python.net>1999-10-03 21:07:21 (GMT)
commit455eb616488e73c6eb69ef4ec9121cdf94d126a0 (patch)
treeada74b4bdd2fdc0bacd35ccd36075bff8a952808 /Lib/distutils/command/build_py.py
parentef9ad6df0160a6337632a9d3047dd0d072f5c3e4 (diff)
downloadcpython-455eb616488e73c6eb69ef4ec9121cdf94d126a0.zip
cpython-455eb616488e73c6eb69ef4ec9121cdf94d126a0.tar.gz
cpython-455eb616488e73c6eb69ef4ec9121cdf94d126a0.tar.bz2
Don't import what we don't use.
Diffstat (limited to 'Lib/distutils/command/build_py.py')
-rw-r--r--Lib/distutils/command/build_py.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py
index 3a7a43b..4067ca4 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):