Skip to content

Commit a2250e6

Browse files
committed
merge from 3.2 - Fix closes Issue11439 Remove the SVN keywords from the code as it is no longer applicable in hg. Patch Contributed by Neil Muller.
2 parents fd96eb2 + 7c9719c commit a2250e6

49 files changed

Lines changed: 2 additions & 98 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Lib/curses/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010
1111
"""
1212

13-
__revision__ = "$Id$"
14-
1513
from _curses import *
1614
import os as _os
1715
import sys as _sys

Lib/curses/panel.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,4 @@
33
Module for using panels with curses.
44
"""
55

6-
__revision__ = "$Id$"
7-
86
from _curses_panel import *

Lib/distutils/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
setup (...)
99
"""
1010

11-
__revision__ = "$Id$"
12-
1311
# Distutils version
1412
#
1513
# Updated automatically by the Python release process.

Lib/distutils/archive_util.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
Utility functions for creating archive files (tarballs, zip files,
44
that sort of thing)."""
55

6-
__revision__ = "$Id$"
7-
86
import os
97
from warnings import warn
108
import sys

Lib/distutils/bcppcompiler.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@
1111
# someone should sit down and factor out the common code as
1212
# WindowsCCompiler! --GPW
1313

14-
__revision__ = "$Id$"
15-
1614

1715
import os
1816
from distutils.errors import \

Lib/distutils/ccompiler.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
Contains CCompiler, an abstract base class that defines the interface
44
for the Distutils compiler abstraction model."""
55

6-
__revision__ = "$Id$"
7-
86
import sys, os, re
97
from distutils.errors import *
108
from distutils.spawn import spawn

Lib/distutils/cmd.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
in the distutils.command package.
55
"""
66

7-
__revision__ = "$Id$"
8-
97
import sys, os, re
108
from distutils.errors import DistutilsOptionError
119
from distutils import util, dir_util, file_util, archive_util, dep_util

Lib/distutils/command/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
Package containing implementation of all the standard Distutils
44
commands."""
55

6-
__revision__ = "$Id$"
7-
86
__all__ = ['build',
97
'build_py',
108
'build_ext',

Lib/distutils/command/bdist.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
Implements the Distutils 'bdist' command (create a built [binary]
44
distribution)."""
55

6-
__revision__ = "$Id$"
7-
86
import os
97
from distutils.core import Command
108
from distutils.errors import *

Lib/distutils/command/bdist_dumb.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
distribution -- i.e., just an archive to be unpacked under $prefix or
55
$exec_prefix)."""
66

7-
__revision__ = "$Id$"
8-
97
import os
108
from distutils.core import Command
119
from distutils.util import get_platform

0 commit comments

Comments
 (0)