diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-01-25 22:11:04 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-01-25 22:11:04 (GMT) |
commit | 7c28be8df5f990eb00ba7d3a1b72cb66935bbe7d (patch) | |
tree | f28d2de51604a5de266a04c3309970d1a4420424 | |
parent | 9f369e91632a9249074049719e31ccb13d8ae039 (diff) | |
download | cpython-7c28be8df5f990eb00ba7d3a1b72cb66935bbe7d.zip cpython-7c28be8df5f990eb00ba7d3a1b72cb66935bbe7d.tar.gz cpython-7c28be8df5f990eb00ba7d3a1b72cb66935bbe7d.tar.bz2 |
added missing module docstring
-rw-r--r-- | Lib/distutils/command/install_lib.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index fed7e53..4c62c71 100644 --- a/Lib/distutils/command/install_lib.py +++ b/Lib/distutils/command/install_lib.py @@ -1,3 +1,8 @@ +"""distutils.command.install_lib + +Implements the Distutils 'install_lib' command +(install all Python modules).""" + __revision__ = "$Id$" import os |