diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 21:37:16 +0000 |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-03-31 21:37:16 +0000 |
commit | 4d32cbe752d7740d678d491d1e4ac89c432c20f3 (patch) | |
tree | 077da894b71e07e6b5d85b49948e71b59b6d03c8 /Lib/distutils/command/install_headers.py | |
parent | 6869428b3facf8eee4aedd27dffa3fbd3e3c86e7 (diff) | |
download | cpython-4d32cbe752d7740d678d491d1e4ac89c432c20f3.tar.gz |
Merged revisions 70886,70888-70892 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70886 | tarek.ziade | 2009-03-31 15:50:59 -0500 (Tue, 31 Mar 2009) | 1 line
added tests for the clean command
........
r70888 | tarek.ziade | 2009-03-31 15:53:13 -0500 (Tue, 31 Mar 2009) | 1 line
more tests for the register command
........
r70889 | tarek.ziade | 2009-03-31 15:53:55 -0500 (Tue, 31 Mar 2009) | 1 line
more tests for the upload command
........
r70890 | tarek.ziade | 2009-03-31 15:54:38 -0500 (Tue, 31 Mar 2009) | 1 line
added test to the install_data command
........
r70891 | tarek.ziade | 2009-03-31 15:55:21 -0500 (Tue, 31 Mar 2009) | 1 line
added tests to the install_headers command
........
r70892 | tarek.ziade | 2009-03-31 15:56:11 -0500 (Tue, 31 Mar 2009) | 1 line
making sdist and config test silents
........
Diffstat (limited to 'Lib/distutils/command/install_headers.py')
-rw-r--r-- | Lib/distutils/command/install_headers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/command/install_headers.py b/Lib/distutils/command/install_headers.py index 346daaad02..38125b5513 100644 --- a/Lib/distutils/command/install_headers.py +++ b/Lib/distutils/command/install_headers.py @@ -8,6 +8,7 @@ __revision__ = "$Id$" from distutils.core import Command +# XXX force is never used class install_headers(Command): description = "install C/C++ header files" |