diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2000-05-12 01:58:29 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2000-05-12 01:58:29 (GMT) |
commit | 6fafca4e1d2e74ea261e874e6fc9ec8c60b093de (patch) | |
tree | ad09e144d885806592e57039f906e62a775ee8ce /Lib/distutils/command/install_scripts.py | |
parent | 17f641c1439585d10a7d03cd22067e2dd0db3ccf (diff) | |
download | cpython-6fafca4e1d2e74ea261e874e6fc9ec8c60b093de.zip cpython-6fafca4e1d2e74ea261e874e6fc9ec8c60b093de.tar.gz cpython-6fafca4e1d2e74ea261e874e6fc9ec8c60b093de.tar.bz2 |
Added comment/docstring/revision header.
Diffstat (limited to 'Lib/distutils/command/install_scripts.py')
-rw-r--r-- | Lib/distutils/command/install_scripts.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Lib/distutils/command/install_scripts.py b/Lib/distutils/command/install_scripts.py index 5c3f2fb..4e23efc 100644 --- a/Lib/distutils/command/install_scripts.py +++ b/Lib/distutils/command/install_scripts.py @@ -1,3 +1,12 @@ +"""distutils.command.install_scripts + +Implements the Distutils 'install_scripts' command, for installing +Python scripts.""" + +# contributed by Bastian Kleineidam + +__revision__ = "$Id$" + import os from distutils.cmd import install_misc from stat import ST_MODE |