diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-04-12 16:49:20 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-04-12 16:49:20 (GMT) |
commit | bccb0c928f84c893ed58af649658267e674e864f (patch) | |
tree | 65783cee28ac618c3f4f8d1491dc6961b8fe48bc /Lib/distutils/command | |
parent | fd39b7aa6ea9b9f56cd438a9262bf6e822d0161c (diff) | |
download | cpython-bccb0c928f84c893ed58af649658267e674e864f.zip cpython-bccb0c928f84c893ed58af649658267e674e864f.tar.gz cpython-bccb0c928f84c893ed58af649658267e674e864f.tar.bz2 |
Merged revisions 71528 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r71528 | tarek.ziade | 2009-04-12 18:45:32 +0200 (Sun, 12 Apr 2009) | 1 line
added a test for finalize_options
........
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/config.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py index c312205..ac80a54 100644 --- a/Lib/distutils/command/config.py +++ b/Lib/distutils/command/config.py @@ -12,6 +12,7 @@ this header file lives". __revision__ = "$Id$" import sys, os, re + from distutils.core import Command from distutils.errors import DistutilsExecError from distutils.sysconfig import customize_compiler |