From 3ce77fd05ed00168f618b63401d770ccc4f04b09 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Thu, 2 Mar 2000 01:49:45 +0000 Subject: Changed '__rcsid__' to '__revision__'. --- Lib/distutils/__init__.py | 2 +- Lib/distutils/ccompiler.py | 2 +- Lib/distutils/command/__init__.py | 2 +- Lib/distutils/command/build.py | 2 +- Lib/distutils/command/build_clib.py | 2 +- Lib/distutils/command/build_ext.py | 2 +- Lib/distutils/command/build_lib.py | 2 +- Lib/distutils/command/build_py.py | 2 +- Lib/distutils/command/install.py | 2 +- Lib/distutils/command/install_ext.py | 2 +- Lib/distutils/command/install_lib.py | 2 +- Lib/distutils/command/install_py.py | 2 +- Lib/distutils/command/sdist.py | 2 +- Lib/distutils/core.py | 2 +- Lib/distutils/errors.py | 2 +- Lib/distutils/fancy_getopt.py | 2 +- Lib/distutils/msvccompiler.py | 2 +- Lib/distutils/spawn.py | 2 +- Lib/distutils/unixccompiler.py | 2 +- Lib/distutils/util.py | 2 +- 20 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py index 18deaad..1f23b97 100644 --- a/Lib/distutils/__init__.py +++ b/Lib/distutils/__init__.py @@ -8,4 +8,4 @@ used from a setup script as setup (...) """ -__rcsid__ = "$Id$" +__revision__ = "$Id$" diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py index 72b7757..4819b23 100644 --- a/Lib/distutils/ccompiler.py +++ b/Lib/distutils/ccompiler.py @@ -5,7 +5,7 @@ for the Distutils compiler abstraction model.""" # created 1999/07/05, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import sys, os from types import * 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 diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py index 83a98a8..a31e60c 100644 --- a/Lib/distutils/core.py +++ b/Lib/distutils/core.py @@ -8,7 +8,7 @@ may be subclassed by clients for still more flexibility).""" # created 1999/03/01, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import sys, os import string, re diff --git a/Lib/distutils/errors.py b/Lib/distutils/errors.py index 17d1abc..86d91dd 100644 --- a/Lib/distutils/errors.py +++ b/Lib/distutils/errors.py @@ -10,7 +10,7 @@ symbols whose names start with "Distutils" and end with "Error".""" # created 1999/03/03, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import types diff --git a/Lib/distutils/fancy_getopt.py b/Lib/distutils/fancy_getopt.py index 86e9f32..3110ab3 100644 --- a/Lib/distutils/fancy_getopt.py +++ b/Lib/distutils/fancy_getopt.py @@ -10,7 +10,7 @@ additional features: # created 1999/03/03, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import sys, string, re from types import * diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py index e489c1c..2dd8dc1 100644 --- a/Lib/distutils/msvccompiler.py +++ b/Lib/distutils/msvccompiler.py @@ -6,7 +6,7 @@ for the Microsoft Visual Studio.""" # created 1999/08/19, Perry Stoll # -__rcsid__ = "$Id$" +__revision__ = "$Id$" import os import sys diff --git a/Lib/distutils/spawn.py b/Lib/distutils/spawn.py index 9a88ac8..847346c 100644 --- a/Lib/distutils/spawn.py +++ b/Lib/distutils/spawn.py @@ -5,7 +5,7 @@ specific functions for launching another program in a sub-process.""" # created 1999/07/24, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import sys, os, string from distutils.errors import * diff --git a/Lib/distutils/unixccompiler.py b/Lib/distutils/unixccompiler.py index 518132f..7765faf 100644 --- a/Lib/distutils/unixccompiler.py +++ b/Lib/distutils/unixccompiler.py @@ -15,7 +15,7 @@ the "typical" Unix-style command-line C compiler: # created 1999/07/05, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import string, re, os from types import * diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py index 641a35a..85f3a34 100644 --- a/Lib/distutils/util.py +++ b/Lib/distutils/util.py @@ -9,7 +9,7 @@ file causing it.""" # created 1999/03/08, Greg Ward -__rcsid__ = "$Id$" +__revision__ = "$Id$" import os, string from distutils.errors import * -- cgit v0.12