summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-03-02 01:49:45 (GMT)
committerGreg Ward <gward@python.net>2000-03-02 01:49:45 (GMT)
commit3ce77fd05ed00168f618b63401d770ccc4f04b09 (patch)
tree23498209dc346f7ab43c6716ad644ced9333c039 /Lib
parent60f64330d10ecd4a3763dec38e3f50dbed742555 (diff)
downloadcpython-3ce77fd05ed00168f618b63401d770ccc4f04b09.zip
cpython-3ce77fd05ed00168f618b63401d770ccc4f04b09.tar.gz
cpython-3ce77fd05ed00168f618b63401d770ccc4f04b09.tar.bz2
Changed '__rcsid__' to '__revision__'.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/__init__.py2
-rw-r--r--Lib/distutils/ccompiler.py2
-rw-r--r--Lib/distutils/command/__init__.py2
-rw-r--r--Lib/distutils/command/build.py2
-rw-r--r--Lib/distutils/command/build_clib.py2
-rw-r--r--Lib/distutils/command/build_ext.py2
-rw-r--r--Lib/distutils/command/build_lib.py2
-rw-r--r--Lib/distutils/command/build_py.py2
-rw-r--r--Lib/distutils/command/install.py2
-rw-r--r--Lib/distutils/command/install_ext.py2
-rw-r--r--Lib/distutils/command/install_lib.py2
-rw-r--r--Lib/distutils/command/install_py.py2
-rw-r--r--Lib/distutils/command/sdist.py2
-rw-r--r--Lib/distutils/core.py2
-rw-r--r--Lib/distutils/errors.py2
-rw-r--r--Lib/distutils/fancy_getopt.py2
-rw-r--r--Lib/distutils/msvccompiler.py2
-rw-r--r--Lib/distutils/spawn.py2
-rw-r--r--Lib/distutils/unixccompiler.py2
-rw-r--r--Lib/distutils/util.py2
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 *