diff options
author | Greg Ward <gward@python.net> | 1999-09-22 15:24:04 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 1999-09-22 15:24:04 (GMT) |
commit | da2d352bdb540cc07969a7321e3632d588e0e769 (patch) | |
tree | c415676e1ad4332a23e4f3a76b6b5c8ab5fa44a0 /Lib | |
parent | 3e1a98a336a4bb9ef1413ffb6e6917278cd27e23 (diff) | |
download | cpython-da2d352bdb540cc07969a7321e3632d588e0e769.zip cpython-da2d352bdb540cc07969a7321e3632d588e0e769.tar.gz cpython-da2d352bdb540cc07969a7321e3632d588e0e769.tar.bz2 |
Added docstring and RCS id (apparently some Windows tar extractors
ignore zero-byte files: grr...).
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/__init__.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index e69de29..18deaad 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -0,0 +1,11 @@ +"""distutils + +The main package for the Python Module Distribtion Utilities. Normally +used from a setup script as + + from distutils.core import setup + + setup (...) +""" + +__rcsid__ = "$Id$" |