mirror of
https://github.com/python/cpython.git
synced 2025-09-27 02:39:58 +00:00
Added comment/docstring/revision header.
This commit is contained in:
parent
17f641c143
commit
6fafca4e1d
2 changed files with 18 additions and 0 deletions
|
@ -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
|
from distutils.cmd import install_misc
|
||||||
|
|
||||||
class install_data (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
|
import os
|
||||||
from distutils.cmd import install_misc
|
from distutils.cmd import install_misc
|
||||||
from stat import ST_MODE
|
from stat import ST_MODE
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue