diff options
author | Marc-André Lemburg <mal@egenix.com> | 2002-04-17 20:30:10 (GMT) |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2002-04-17 20:30:10 (GMT) |
commit | 0538f1f2c7171ceb0940fd3865172ad164d2005e (patch) | |
tree | 31d7a834f2f7a0f001956b4a0655727d6c09e643 /Lib/distutils/command/__init__.py | |
parent | b02ea65f92f7e0c04689f469d436ba35dc2f631f (diff) | |
download | cpython-0538f1f2c7171ceb0940fd3865172ad164d2005e.zip cpython-0538f1f2c7171ceb0940fd3865172ad164d2005e.tar.gz cpython-0538f1f2c7171ceb0940fd3865172ad164d2005e.tar.bz2 |
Patch #531901 by Mark W. Alexander: adds a new distutils packager
base class (in bdist_packager) and two subclasses which make use
of this base class: bdist_pkgtool (for Solaris) and bdist_sdux (for
HP-UX).
Diffstat (limited to 'Lib/distutils/command/__init__.py')
-rw-r--r-- | Lib/distutils/command/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index ef8e9ad..8143627 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py @@ -21,4 +21,9 @@ __all__ = ['build', 'bdist_dumb', 'bdist_rpm', 'bdist_wininst', + 'bdist_sdux', + 'bdist_pkgtool', + # Note: + # bdist_packager is not included because it only provides + # an abstract base class ] |