mirror of https://github.com/python/cpython.git
Added comment/docstring/revision header.
This commit is contained in:
parent
17f641c143
commit
6fafca4e1d
|
@ -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):
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue