Added comment/docstring/revision header.

This commit is contained in:
Gregory P. Smith 2000-05-12 01:58:29 +00:00
parent 17f641c143
commit 6fafca4e1d
2 changed files with 18 additions and 0 deletions

View File

@ -1,3 +1,12 @@
"""distutils.command.install_data
Implements the Distutils 'install_data' command, for installing
platform-independent data files."""
# contributed by Bastian Kleineidam
__revision__ = "$Id$"
from distutils.cmd import install_misc
class install_data (install_misc):

View File

@ -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