diff options
author | Greg Ward <gward@python.net> | 1999-03-22 14:55:25 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 1999-03-22 14:55:25 (GMT) |
commit | 13ae1c8ff81befcfd0b0ece98ef471cd504642d8 (patch) | |
tree | 3ec9b551a151d407a01fb74b48c6a166248c336d /Lib/distutils/command/__init__.py | |
parent | 03f8c3cdd013313374482bdac82609225e58561c (diff) | |
download | cpython-13ae1c8ff81befcfd0b0ece98ef471cd504642d8.zip cpython-13ae1c8ff81befcfd0b0ece98ef471cd504642d8.tar.gz cpython-13ae1c8ff81befcfd0b0ece98ef471cd504642d8.tar.bz2 |
First checkin of real Distutils command modules.
Diffstat (limited to 'Lib/distutils/command/__init__.py')
-rw-r--r-- | Lib/distutils/command/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py new file mode 100644 index 0000000..9567fd1 --- /dev/null +++ b/Lib/distutils/command/__init__.py @@ -0,0 +1,6 @@ +# this is solely for debugging convenience + +__all__ = ['build', + 'build_py', + 'make_blib', + ] |