]> granicus.if.org Git - python/commitdiff
Changed '__rcsid__' to '__revision__'.
authorGreg Ward <gward@python.net>
Thu, 2 Mar 2000 01:49:45 +0000 (01:49 +0000)
committerGreg Ward <gward@python.net>
Thu, 2 Mar 2000 01:49:45 +0000 (01:49 +0000)
20 files changed:
Lib/distutils/__init__.py
Lib/distutils/ccompiler.py
Lib/distutils/command/__init__.py
Lib/distutils/command/build.py
Lib/distutils/command/build_clib.py
Lib/distutils/command/build_ext.py
Lib/distutils/command/build_lib.py
Lib/distutils/command/build_py.py
Lib/distutils/command/install.py
Lib/distutils/command/install_ext.py
Lib/distutils/command/install_lib.py
Lib/distutils/command/install_py.py
Lib/distutils/command/sdist.py
Lib/distutils/core.py
Lib/distutils/errors.py
Lib/distutils/fancy_getopt.py
Lib/distutils/msvccompiler.py
Lib/distutils/spawn.py
Lib/distutils/unixccompiler.py
Lib/distutils/util.py

index 18deaadf4493f9e65a6c7b1c66a8f1464c86e8de..1f23b972e49f1764a62cc79e543775e71b2abb52 100644 (file)
@@ -8,4 +8,4 @@ used from a setup script as
    setup (...)
 """
 
-__rcsid__ = "$Id$"
+__revision__ = "$Id$"
index 72b77573c6e2f8095b9bf683f4dcfb42f26cdd63..4819b23c3c76454c418c5d7d4b9fe1ab498695a2 100644 (file)
@@ -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 *
index ea979f9b50620df95dd213d0f272fe7d113fd5f6..40595ba949d0d64c0dfdcfc583b100fb1bc5ffe2 100644 (file)
@@ -13,7 +13,7 @@ commands.  Currently this means:
 
 but this list will undoubtedly grow with time."""
 
-__rcsid__ = "$Id$"
+__revision__ = "$Id$"
 
 __all__ = ['build',
            'build_py',
index e25ef81cada63461cd0680a58ea53f710855e225..d81bc885114791ae89a1974e0d6ff24d965bbfc1 100644 (file)
@@ -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
index 9cb584a1ce595696d80eb9e0b113bbc8aac53f77..955cf5650cc4547ff2c2d2e413a9ff9d73859bd8 100644 (file)
@@ -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
index fd5cd7a53a4f3ac9282cc8f6007fa5cc259c57af..6da02fedfade73a0a21f2509d916e73309fcec1f 100644 (file)
@@ -6,7 +6,7 @@ extensions ASAP)."""
 
 # created 1999/08/09, Greg Ward
 
-__rcsid__ = "$Id$"
+__revision__ = "$Id$"
 
 import sys, os, string, re
 from types import *
index 9cb584a1ce595696d80eb9e0b113bbc8aac53f77..955cf5650cc4547ff2c2d2e413a9ff9d73859bd8 100644 (file)
@@ -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
index 05a1beff4eb8b3631bcd13a53c6c24c8ba87dd88..2d0ad1ce0952d8e062c205fc129c2526fb51aa7b 100644 (file)
@@ -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 *
index a89bc0259fe6e811967eb455ba4ba68a0532eebd..1df558434a8689cf9e8c529a895d3f1fdc49f59d 100644 (file)
@@ -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 *
index f1a3e247250e155729b8afef048bf979ab48d0c4..8d23fa4cde6efbb8a6afbeca4d6aa7ec68b0a348 100644 (file)
@@ -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
index ab82e04bf09d4ffacdbf81d44e2c3cb28817b0da..33cf6894e235dda0c4d93c6467c66aee1ccd934b 100644 (file)
@@ -1,6 +1,6 @@
 # created 1999/03/13, Greg Ward
 
-__rcsid__ = "$Id$"
+__revision__ = "$Id$"
 
 import sys, string
 from distutils.core import Command
index ab82e04bf09d4ffacdbf81d44e2c3cb28817b0da..33cf6894e235dda0c4d93c6467c66aee1ccd934b 100644 (file)
@@ -1,6 +1,6 @@
 # created 1999/03/13, Greg Ward
 
-__rcsid__ = "$Id$"
+__revision__ = "$Id$"
 
 import sys, string
 from distutils.core import Command
index 6b838bdef2e53ed481147b2a0c6f0a3e610b87f8..726458a246eaf1939454882749043b732d968759 100644 (file)
@@ -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
index 83a98a84d684f6a63a912230e678edec984fc751..a31e60ce4a73072f3094beeab21d0782a07d3eba 100644 (file)
@@ -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
index 17d1abc796bb7b7109ac546f4942dd203ea85a61..86d91dd6c07a8a5875304d81188bb07d72e42b38 100644 (file)
@@ -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
 
index 86e9f326adbb883d100c670b8f21c850fcc46b66..3110ab30dba812c068fc0ae14bae98339e882cb2 100644 (file)
@@ -10,7 +10,7 @@ additional features:
 
 # created 1999/03/03, Greg Ward
 
-__rcsid__ = "$Id$"
+__revision__ = "$Id$"
 
 import sys, string, re
 from types import *
index e489c1c86ef6c2c07c21be434d65d878839e2128..2dd8dc10ca3c9a7148e40b52716d0dbf3628e40b 100644 (file)
@@ -6,7 +6,7 @@ for the Microsoft Visual Studio."""
 
 # created 1999/08/19, Perry Stoll
 # 
-__rcsid__ = "$Id$"
+__revision__ = "$Id$"
 
 import os
 import sys
index 9a88ac8987772273a601e569dff73b692bfcb3f2..847346cc2f9da93f8abfa20047041680e082549b 100644 (file)
@@ -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 *
index 518132f670c55b9b17422c52493cfa7860a3e729..7765faf88bdc0b7d5ab59985fe184b2af121e1fc 100644 (file)
@@ -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 *
index 641a35af8d618aa67400fbaa441874698797d7d2..85f3a345e67006673fbeea73036e14875b425ff2 100644 (file)
@@ -9,7 +9,7 @@ file causing it."""
 
 # created 1999/03/08, Greg Ward
 
-__rcsid__ = "$Id$"
+__revision__ = "$Id$"
 
 import os, string
 from distutils.errors import *