diff options
author | Greg Ward <gward@python.net> | 2000-05-28 23:49:03 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-05-28 23:49:03 (GMT) |
commit | 2129032bc6a17040d5652b14d8c8bb6c80fc3857 (patch) | |
tree | 92cac45fbd02c0454ec7f7c07535edebd8aba341 /Lib/distutils/command/__init__.py | |
parent | fbb04c448c31a653930039f61cf726ab16d93469 (diff) | |
download | cpython-2129032bc6a17040d5652b14d8c8bb6c80fc3857.zip cpython-2129032bc6a17040d5652b14d8c8bb6c80fc3857.tar.gz cpython-2129032bc6a17040d5652b14d8c8bb6c80fc3857.tar.bz2 |
Changed order so 'clean' is right after the 'build' commands.
Diffstat (limited to 'Lib/distutils/command/__init__.py')
-rw-r--r-- | Lib/distutils/command/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index 56c26fe..95bce8d 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py @@ -10,12 +10,12 @@ __all__ = ['build', 'build_ext', 'build_clib', 'build_scripts', + 'clean', 'install', 'install_lib', 'install_headers', 'install_scripts', 'install_data', - 'clean', 'sdist', 'bdist', 'bdist_dumb', |