diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-30 04:00:29 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-30 04:00:29 (GMT) |
commit | 1010bf3e2690ea665ed0fae5b1f0a6f959040441 (patch) | |
tree | 738f0bf0d9fa2498bd8253f1a013dda457cdb3a3 /Lib | |
parent | c4bbc8d7dc0992b37855e1e7173bab16b32a752d (diff) | |
download | cpython-1010bf3e2690ea665ed0fae5b1f0a6f959040441.zip cpython-1010bf3e2690ea665ed0fae5b1f0a6f959040441.tar.gz cpython-1010bf3e2690ea665ed0fae5b1f0a6f959040441.tar.bz2 |
Merged revisions 68840,68881,68943,68945 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68840 | andrew.kuchling | 2009-01-20 20:15:43 -0600 (Tue, 20 Jan 2009) | 1 line
Add some items
........
r68881 | andrew.kuchling | 2009-01-23 21:28:18 -0600 (Fri, 23 Jan 2009) | 1 line
Add various items
........
r68943 | tarek.ziade | 2009-01-25 16:09:10 -0600 (Sun, 25 Jan 2009) | 1 line
Issue #5052: removed backward compatibility information (out of date)
........
r68945 | tarek.ziade | 2009-01-25 16:11:04 -0600 (Sun, 25 Jan 2009) | 1 line
added missing module docstring
........
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/install_lib.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index ac620fc..94895f4 100644 --- a/Lib/distutils/command/install_lib.py +++ b/Lib/distutils/command/install_lib.py @@ -1,3 +1,8 @@ +"""distutils.command.install_lib + +Implements the Distutils 'install_lib' command +(install all Python modules).""" + __revision__ = "$Id$" import sys, os |