From 3ce77fd05ed00168f618b63401d770ccc4f04b09 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Thu, 2 Mar 2000 01:49:45 +0000 Subject: [PATCH] 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 18deaadf449..1f23b972e49 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 72b77573c6e..4819b23c3c7 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 ea979f9b506..40595ba949d 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 e25ef81cada..d81bc885114 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 9cb584a1ce5..955cf5650cc 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 fd5cd7a53a4..6da02fedfad 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 9cb584a1ce5..955cf5650cc 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 05a1beff4eb..2d0ad1ce095 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 a89bc0259fe..1df558434a8 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 f1a3e247250..8d23fa4cde6 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 ab82e04bf09..33cf6894e23 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 ab82e04bf09..33cf6894e23 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 6b838bdef2e..726458a246e 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 83a98a84d68..a31e60ce4a7 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 17d1abc796b..86d91dd6c07 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 86e9f326adb..3110ab30dba 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 e489c1c86ef..2dd8dc10ca3 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 9a88ac89877..847346cc2f9 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 518132f670c..7765faf88bd 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 641a35af8d6..85f3a345e67 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 *