diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-07-03 09:05:30 +0000 |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-07-03 09:05:30 +0000 |
| commit | 9357a7c74f276c20dd408a3394241c226d841b84 (patch) | |
| tree | e1aadad8d10bf5858851e8ae1963258f5217af78 /command/build_py.py | |
| parent | 354b6e7100a54b04521cd57453c702386e4eae30 (diff) | |
| download | python-setuptools-git-9357a7c74f276c20dd408a3394241c226d841b84.tar.gz | |
Merged revisions 73801 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73801 | tarek.ziade | 2009-07-03 11:01:07 +0200 (Fri, 03 Jul 2009) | 1 line
cleaned up distutils.command.build_py
........
Diffstat (limited to 'command/build_py.py')
| -rw-r--r-- | command/build_py.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/command/build_py.py b/command/build_py.py index 99d85be9..4cc80f7b 100644 --- a/command/build_py.py +++ b/command/build_py.py @@ -4,15 +4,15 @@ Implements the Distutils 'build_py' command.""" __revision__ = "$Id$" -import sys, os +import os from glob import glob from distutils.core import Command -from distutils.errors import * +from distutils.errors import DistutilsOptionError, DistutilsFileError from distutils.util import convert_path, Mixin2to3 from distutils import log -class build_py (Command): +class build_py(Command): description = "\"build\" pure Python modules (copy to build directory)" |
