Skip to content

Commit 3ce77fd

Browse files
committed
Changed '__rcsid__' to '__revision__'.
1 parent 60f6433 commit 3ce77fd

20 files changed

Lines changed: 20 additions & 20 deletions

Lib/distutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
setup (...)
99
"""
1010

11-
__rcsid__ = "$Id$"
11+
__revision__ = "$Id$"

Lib/distutils/ccompiler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# created 1999/07/05, Greg Ward
77

8-
__rcsid__ = "$Id$"
8+
__revision__ = "$Id$"
99

1010
import sys, os
1111
from types import *

Lib/distutils/command/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
but this list will undoubtedly grow with time."""
1515

16-
__rcsid__ = "$Id$"
16+
__revision__ = "$Id$"
1717

1818
__all__ = ['build',
1919
'build_py',

Lib/distutils/command/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# created 1999/03/08, Greg Ward
66

7-
__rcsid__ = "$Id$"
7+
__revision__ = "$Id$"
88

99
import sys, os
1010
from distutils.core import Command

Lib/distutils/command/build_clib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# created (an empty husk) 1999/12/18, Greg Ward
88
# fleshed out 2000/02/03-04
99

10-
__rcsid__ = "$Id$"
10+
__revision__ = "$Id$"
1111

1212

1313
# XXX this module has *lots* of code ripped-off quite transparently from

Lib/distutils/command/build_ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# created 1999/08/09, Greg Ward
88

9-
__rcsid__ = "$Id$"
9+
__revision__ = "$Id$"
1010

1111
import sys, os, string, re
1212
from types import *

Lib/distutils/command/build_lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# created (an empty husk) 1999/12/18, Greg Ward
88
# fleshed out 2000/02/03-04
99

10-
__rcsid__ = "$Id$"
10+
__revision__ = "$Id$"
1111

1212

1313
# XXX this module has *lots* of code ripped-off quite transparently from

Lib/distutils/command/build_py.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# created 1999/03/08, Greg Ward
66

7-
__rcsid__ = "$Id$"
7+
__revision__ = "$Id$"
88

99
import sys, string, os
1010
from types import *

Lib/distutils/command/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# created 1999/03/13, Greg Ward
66

7-
__rcsid__ = "$Id$"
7+
__revision__ = "$Id$"
88

99
import sys, os, string
1010
from types import *

Lib/distutils/command/install_ext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# created 1999/09/12, Greg Ward
66

7-
__rcsid__ = "$Id$"
7+
__revision__ = "$Id$"
88

99
from distutils.core import Command
1010
from distutils.util import copy_tree

0 commit comments

Comments
 (0)