diff options
author | Greg Ward <gward@python.net> | 1999-09-22 15:24:04 +0000 |
---|---|---|
committer | Greg Ward <gward@python.net> | 1999-09-22 15:24:04 +0000 |
commit | da2d352bdb540cc07969a7321e3632d588e0e769 (patch) | |
tree | c415676e1ad4332a23e4f3a76b6b5c8ab5fa44a0 | |
parent | 3e1a98a336a4bb9ef1413ffb6e6917278cd27e23 (diff) | |
download | cpython-git-da2d352bdb540cc07969a7321e3632d588e0e769.tar.gz |
Added docstring and RCS id (apparently some Windows tar extractors
ignore zero-byte files: grr...).
-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 e69de29bb2..18deaadf44 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$" |