Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6fafca4

Browse files
committed
Added comment/docstring/revision header.
1 parent 17f641c commit 6fafca4

2 files changed

Lines changed: 18 additions & 0 deletions

File tree

Lib/distutils/command/install_data.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
"""distutils.command.install_data
2+
3+
Implements the Distutils 'install_data' command, for installing
4+
platform-independent data files."""
5+
6+
# contributed by Bastian Kleineidam
7+
8+
__revision__ = "$Id$"
9+
110
from distutils.cmd import install_misc
211

312
class install_data (install_misc):

Lib/distutils/command/install_scripts.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
"""distutils.command.install_scripts
2+
3+
Implements the Distutils 'install_scripts' command, for installing
4+
Python scripts."""
5+
6+
# contributed by Bastian Kleineidam
7+
8+
__revision__ = "$Id$"
9+
110
import os
211
from distutils.cmd import install_misc
312
from stat import ST_MODE

0 commit comments

Comments
 (0)