summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2011-07-28 15:39:08 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2011-07-28 15:39:08 (GMT)
commita2250e61db26e6f03d035e8c16e5305e57714323 (patch)
tree972aaa4bcd5670d8364de6e07ee541cd90754a8b /Lib/distutils/command
parentfd96eb2a680e59ee21d42cb96ee85b6788501864 (diff)
parent7c9719cf74a4c5fc04a07b706d71302bdd8c04c5 (diff)
downloadcpython-a2250e61db26e6f03d035e8c16e5305e57714323.zip
cpython-a2250e61db26e6f03d035e8c16e5305e57714323.tar.gz
cpython-a2250e61db26e6f03d035e8c16e5305e57714323.tar.bz2
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.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r--Lib/distutils/command/__init__.py2
-rw-r--r--Lib/distutils/command/bdist.py2
-rw-r--r--Lib/distutils/command/bdist_dumb.py2
-rw-r--r--Lib/distutils/command/bdist_rpm.py2
-rw-r--r--Lib/distutils/command/bdist_wininst.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_py.py2
-rw-r--r--Lib/distutils/command/build_scripts.py2
-rw-r--r--Lib/distutils/command/check.py2
-rw-r--r--Lib/distutils/command/clean.py2
-rw-r--r--Lib/distutils/command/config.py2
-rw-r--r--Lib/distutils/command/install.py2
-rw-r--r--Lib/distutils/command/install_data.py2
-rw-r--r--Lib/distutils/command/install_headers.py2
-rw-r--r--Lib/distutils/command/install_lib.py2
-rw-r--r--Lib/distutils/command/install_scripts.py2
-rw-r--r--Lib/distutils/command/register.py2
-rw-r--r--Lib/distutils/command/sdist.py2
20 files changed, 0 insertions, 40 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py
index c379edb..481eea9 100644
--- a/Lib/distutils/command/__init__.py
+++ b/Lib/distutils/command/__init__.py
@@ -3,8 +3,6 @@
Package containing implementation of all the standard Distutils
commands."""
-__revision__ = "$Id$"
-
__all__ = ['build',
'build_py',
'build_ext',
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py
index 1a360b5..c5188eb 100644
--- a/Lib/distutils/command/bdist.py
+++ b/Lib/distutils/command/bdist.py
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist' command (create a built [binary]
distribution)."""
-__revision__ = "$Id$"
-
import os
from distutils.core import Command
from distutils.errors import *
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py
index 2d39922..170e889 100644
--- a/Lib/distutils/command/bdist_dumb.py
+++ b/Lib/distutils/command/bdist_dumb.py
@@ -4,8 +4,6 @@ Implements the Distutils 'bdist_dumb' command (create a "dumb" built
distribution -- i.e., just an archive to be unpacked under $prefix or
$exec_prefix)."""
-__revision__ = "$Id$"
-
import os
from distutils.core import Command
from distutils.util import get_platform
diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py
index e2ae877..678e118 100644
--- a/Lib/distutils/command/bdist_rpm.py
+++ b/Lib/distutils/command/bdist_rpm.py
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist_rpm' command (create RPM source and binary
distributions)."""
-__revision__ = "$Id$"
-
import sys, os
from distutils.core import Command
from distutils.debug import DEBUG
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py
index b886055..52e34ec 100644
--- a/Lib/distutils/command/bdist_wininst.py
+++ b/Lib/distutils/command/bdist_wininst.py
@@ -3,8 +3,6 @@
Implements the Distutils 'bdist_wininst' command: create a windows installer
exe-program."""
-__revision__ = "$Id$"
-
import sys, os
from distutils.core import Command
from distutils.util import get_platform
diff --git a/Lib/distutils/command/build.py b/Lib/distutils/command/build.py
index 9c2667c..cfc15cf 100644
--- a/Lib/distutils/command/build.py
+++ b/Lib/distutils/command/build.py
@@ -2,8 +2,6 @@
Implements the Distutils 'build' command."""
-__revision__ = "$Id$"
-
import sys, os
from distutils.core import Command
from distutils.errors import DistutilsOptionError
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py
index 428011a..3e20ef2 100644
--- a/Lib/distutils/command/build_clib.py
+++ b/Lib/distutils/command/build_clib.py
@@ -4,8 +4,6 @@ Implements the Distutils 'build_clib' command, to build a C/C++ library
that is included in the module distribution and needed by an extension
module."""
-__revision__ = "$Id$"
-
# XXX this module has *lots* of code ripped-off quite transparently from
# build_ext.py -- not surprisingly really, as the work required to build
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index fb31648..8d843d6 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -4,8 +4,6 @@ Implements the Distutils 'build_ext' command, for building extension
modules (currently limited to C extensions, should accommodate C++
extensions ASAP)."""
-__revision__ = "$Id$"
-
import sys, os, re
from distutils.core import Command
from distutils.errors import *
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py
index 26002e4..3868c12 100644
--- a/Lib/distutils/command/build_py.py
+++ b/Lib/distutils/command/build_py.py
@@ -2,8 +2,6 @@
Implements the Distutils 'build_py' command."""
-__revision__ = "$Id$"
-
import sys, os
import sys
from glob import glob
diff --git a/Lib/distutils/command/build_scripts.py b/Lib/distutils/command/build_scripts.py
index 31be793..4b5b22e 100644
--- a/Lib/distutils/command/build_scripts.py
+++ b/Lib/distutils/command/build_scripts.py
@@ -2,8 +2,6 @@
Implements the Distutils 'build_scripts' command."""
-__revision__ = "$Id$"
-
import os, re
from stat import ST_MODE
from distutils import sysconfig
diff --git a/Lib/distutils/command/check.py b/Lib/distutils/command/check.py
index 2657c69..b67c795 100644
--- a/Lib/distutils/command/check.py
+++ b/Lib/distutils/command/check.py
@@ -2,8 +2,6 @@
Implements the Distutils 'check' command.
"""
-__revision__ = "$Id$"
-
from distutils.core import Command
from distutils.errors import DistutilsSetupError
diff --git a/Lib/distutils/command/clean.py b/Lib/distutils/command/clean.py
index ae1d22c..0cb2701 100644
--- a/Lib/distutils/command/clean.py
+++ b/Lib/distutils/command/clean.py
@@ -4,8 +4,6 @@ Implements the Distutils 'clean' command."""
# contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18
-__revision__ = "$Id$"
-
import os
from distutils.core import Command
from distutils.dir_util import remove_tree
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py
index ac80a54..847e858 100644
--- a/Lib/distutils/command/config.py
+++ b/Lib/distutils/command/config.py
@@ -9,8 +9,6 @@ configure-like tasks: "try to compile this C code", or "figure out where
this header file lives".
"""
-__revision__ = "$Id$"
-
import sys, os, re
from distutils.core import Command
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index bdc3a09..0161898 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -2,8 +2,6 @@
Implements the Distutils 'install' command."""
-__revision__ = "$Id$"
-
import sys
import os
diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py
index ab40797..947cd76 100644
--- a/Lib/distutils/command/install_data.py
+++ b/Lib/distutils/command/install_data.py
@@ -5,8 +5,6 @@ platform-independent data files."""
# contributed by Bastian Kleineidam
-__revision__ = "$Id$"
-
import os
from distutils.core import Command
from distutils.util import change_root, convert_path
diff --git a/Lib/distutils/command/install_headers.py b/Lib/distutils/command/install_headers.py
index 38125b5..9bb0b18 100644
--- a/Lib/distutils/command/install_headers.py
+++ b/Lib/distutils/command/install_headers.py
@@ -3,8 +3,6 @@
Implements the Distutils 'install_headers' command, to install C/C++ header
files to the Python include directory."""
-__revision__ = "$Id$"
-
from distutils.core import Command
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index 6022d30..3d01d07 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -3,8 +3,6 @@
Implements the Distutils 'install_lib' command
(install all Python modules)."""
-__revision__ = "$Id$"
-
import os
import sys
diff --git a/Lib/distutils/command/install_scripts.py b/Lib/distutils/command/install_scripts.py
index ea8d5aa..31a1130 100644
--- a/Lib/distutils/command/install_scripts.py
+++ b/Lib/distutils/command/install_scripts.py
@@ -5,8 +5,6 @@ Python scripts."""
# contributed by Bastian Kleineidam
-__revision__ = "$Id$"
-
import os
from distutils.core import Command
from distutils import log
diff --git a/Lib/distutils/command/register.py b/Lib/distutils/command/register.py
index bdf5f8f..99545af 100644
--- a/Lib/distutils/command/register.py
+++ b/Lib/distutils/command/register.py
@@ -5,8 +5,6 @@ Implements the Distutils 'register' command (register with the repository).
# created 2002/10/21, Richard Jones
-__revision__ = "$Id$"
-
import os, string, getpass
import io
import urllib.parse, urllib.request
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index fdbebd7..48cb26b 100644
--- a/Lib/distutils/command/sdist.py
+++ b/Lib/distutils/command/sdist.py
@@ -2,8 +2,6 @@
Implements the Distutils 'sdist' command (create a source distribution)."""
-__revision__ = "$Id$"
-
import os
import string
import sys