diff options
| author | Greg Ward <gward@python.net> | 2000-03-02 01:49:45 (GMT) |
|---|---|---|
| committer | Greg Ward <gward@python.net> | 2000-03-02 01:49:45 (GMT) |
| commit | 3ce77fd05ed00168f618b63401d770ccc4f04b09 (patch) | |
| tree | 23498209dc346f7ab43c6716ad644ced9333c039 /Lib/distutils/command | |
| parent | 60f64330d10ecd4a3763dec38e3f50dbed742555 (diff) | |
| download | cpython-3ce77fd05ed00168f618b63401d770ccc4f04b09.zip cpython-3ce77fd05ed00168f618b63401d770ccc4f04b09.tar.gz cpython-3ce77fd05ed00168f618b63401d770ccc4f04b09.tar.bz2 | |
Changed '__rcsid__' to '__revision__'.
Diffstat (limited to 'Lib/distutils/command')
| -rw-r--r-- | Lib/distutils/command/__init__.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/build.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/build_clib.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/build_ext.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/build_lib.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/build_py.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/install.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/install_ext.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/install_lib.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/install_py.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/sdist.py | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py index ea979f9..40595ba 100644 --- a/Lib/distutils/command/__init__.py +++ b/Lib/distutils/command/__init__.py @@ -13,7 +13,7 @@ commands. Currently this means: but this list will undoubtedly grow with time.""" -__rcsid__ = "$Id$" +__revision__ = "$Id$" __all__ = ['build', 'build_py', diff --git a/Lib/distutils/command/build.py b/Lib/distutils/command/build.py index e25ef81..d81bc88 100644 --- a/Lib/distutils/command/build.py +++ b/Lib/distutils/command/build.py @@ -4,7 +4,7 @@ Implements the Distutils 'build' command.""" # created 1999/03/08, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import sys, os from distutils.core import Command diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py index 9cb584a..955cf56 100644 --- a/Lib/distutils/command/build_clib.py +++ b/Lib/distutils/command/build_clib.py @@ -7,7 +7,7 @@ module.""" # created (an empty husk) 1999/12/18, Greg Ward # fleshed out 2000/02/03-04 -__rcsid__ = "$Id$" +__revision__ = "$Id$" # XXX this module has *lots* of code ripped-off quite transparently from diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index fd5cd7a..6da02fe 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -6,7 +6,7 @@ extensions ASAP).""" # created 1999/08/09, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import sys, os, string, re from types import * diff --git a/Lib/distutils/command/build_lib.py b/Lib/distutils/command/build_lib.py index 9cb584a..955cf56 100644 --- a/Lib/distutils/command/build_lib.py +++ b/Lib/distutils/command/build_lib.py @@ -7,7 +7,7 @@ module.""" # created (an empty husk) 1999/12/18, Greg Ward # fleshed out 2000/02/03-04 -__rcsid__ = "$Id$" +__revision__ = "$Id$" # XXX this module has *lots* of code ripped-off quite transparently from diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py index 05a1bef..2d0ad1c 100644 --- a/Lib/distutils/command/build_py.py +++ b/Lib/distutils/command/build_py.py @@ -4,7 +4,7 @@ Implements the Distutils 'build_py' command.""" # created 1999/03/08, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import sys, string, os from types import * diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index a89bc02..1df5584 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -4,7 +4,7 @@ Implements the Distutils 'install' command.""" # created 1999/03/13, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import sys, os, string from types import * diff --git a/Lib/distutils/command/install_ext.py b/Lib/distutils/command/install_ext.py index f1a3e24..8d23fa4 100644 --- a/Lib/distutils/command/install_ext.py +++ b/Lib/distutils/command/install_ext.py @@ -4,7 +4,7 @@ Implement the Distutils "install_ext" command to install extension modules.""" # created 1999/09/12, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" from distutils.core import Command from distutils.util import copy_tree diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index ab82e04..33cf689 100644 --- a/Lib/distutils/command/install_lib.py +++ b/Lib/distutils/command/install_lib.py @@ -1,6 +1,6 @@ # created 1999/03/13, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import sys, string from distutils.core import Command diff --git a/Lib/distutils/command/install_py.py b/Lib/distutils/command/install_py.py index ab82e04..33cf689 100644 --- a/Lib/distutils/command/install_py.py +++ b/Lib/distutils/command/install_py.py @@ -1,6 +1,6 @@ # created 1999/03/13, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import sys, string from distutils.core import Command diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 6b838bd..726458a 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -4,7 +4,7 @@ Implements the Distutils 'sdist' command (create a source distribution).""" # created 1999/09/22, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import sys, os, string, re import fnmatch |
