summaryrefslogtreecommitdiff
path: root/src/distutils2/command
diff options
context:
space:
mode:
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
]