summaryrefslogtreecommitdiff
path: root/src/distutils2/command
diff options
context:
space:
mode:
author?ric Araujo <merwok@netwok.org>2010-08-07 15:18:13 +0200
committer?ric Araujo <merwok@netwok.org>2010-08-07 15:18:13 +0200
commit823566a72c48a1e484c8199ac2d2f0505c2d2ee2 (patch)
tree8054a47a44b0c4d7a4ac6f34e19c988afe70b241 /src/distutils2/command
parentbfb74e2d06acee0bd70841712e9686f48e7d30a5 (diff)
downloaddisutils2-823566a72c48a1e484c8199ac2d2f0505c2d2ee2.tar.gz
Tweak command.__all__.
- check does not depend on anything else, so make it printed at the top of the list when using --help-commands - move register between sdist/bdists and upload - remove obsolete comments.
Diffstat (limited to 'src/distutils2/command')
-rw-r--r--src/distutils2/command/__init__.py12
1 files changed, 3 insertions, 9 deletions
diff --git a/src/distutils2/command/__init__.py b/src/distutils2/command/__init__.py
index 82cef1e..8d77852 100644
--- a/src/distutils2/command/__init__.py
+++ b/src/distutils2/command/__init__.py
@@ -5,7 +5,8 @@ commands."""
__revision__ = "$Id: __init__.py 71473 2009-04-11 14:55:07Z tarek.ziade $"
-__all__ = ['build',
+__all__ = ['check',
+ 'build',
'build_py',
'build_ext',
'build_clib',
@@ -18,16 +19,9 @@ __all__ = ['build',
'install_data',
'install_distinfo',
'sdist',
- 'register',
'bdist',
'bdist_dumb',
'bdist_wininst',
+ 'register',
'upload',
- 'check',
- # These two are reserved for future use:
- #'bdist_sdux',
- #'bdist_pkgtool',
- # Note:
- # bdist_packager is not included because it only provides
- # an abstract base class
]