summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-01-25 22:09:10 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-01-25 22:09:10 (GMT)
commit9f369e91632a9249074049719e31ccb13d8ae039 (patch)
treed96cc225fc5feac2f87cf9586cfb571b09494097 /Lib/distutils
parent68d919e4d60b49d7252bf3a3a53299bbad86fe68 (diff)
downloadcpython-9f369e91632a9249074049719e31ccb13d8ae039.zip
cpython-9f369e91632a9249074049719e31ccb13d8ae039.tar.gz
cpython-9f369e91632a9249074049719e31ccb13d8ae039.tar.bz2
Issue #5052: removed backward compatibility information (out of date)
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/__init__.py2
-rw-r--r--Lib/distutils/archive_util.py2
-rw-r--r--Lib/distutils/bcppcompiler.py2
-rw-r--r--Lib/distutils/ccompiler.py2
-rw-r--r--Lib/distutils/cmd.py2
-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/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/sdist.py2
-rw-r--r--Lib/distutils/core.py2
-rw-r--r--Lib/distutils/cygwinccompiler.py2
-rw-r--r--Lib/distutils/debug.py2
-rw-r--r--Lib/distutils/dep_util.py2
-rw-r--r--Lib/distutils/dir_util.py2
-rw-r--r--Lib/distutils/dist.py2
-rw-r--r--Lib/distutils/errors.py2
-rw-r--r--Lib/distutils/fancy_getopt.py2
-rw-r--r--Lib/distutils/file_util.py2
-rw-r--r--Lib/distutils/filelist.py2
-rw-r--r--Lib/distutils/log.py2
-rw-r--r--Lib/distutils/msvccompiler.py2
-rw-r--r--Lib/distutils/spawn.py2
36 files changed, 0 insertions, 72 deletions
diff --git a/Lib/distutils/__init__.py b/Lib/distutils/__init__.py
index 7315a37..57fcf97 100644
--- a/Lib/distutils/__init__.py
+++ b/Lib/distutils/__init__.py
@@ -8,8 +8,6 @@ used from a setup script as
setup (...)
"""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
# Distutils version
diff --git a/Lib/distutils/archive_util.py b/Lib/distutils/archive_util.py
index 264e66f..b50563e 100644
--- a/Lib/distutils/archive_util.py
+++ b/Lib/distutils/archive_util.py
@@ -3,8 +3,6 @@
Utility functions for creating archive files (tarballs, zip files,
that sort of thing)."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os
diff --git a/Lib/distutils/bcppcompiler.py b/Lib/distutils/bcppcompiler.py
index d4fc533..5a0fa72 100644
--- a/Lib/distutils/bcppcompiler.py
+++ b/Lib/distutils/bcppcompiler.py
@@ -11,8 +11,6 @@ for the Borland C++ compiler.
# someone should sit down and factor out the common code as
# WindowsCCompiler! --GPW
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py
index aa92a9f..a56a038 100644
--- a/Lib/distutils/ccompiler.py
+++ b/Lib/distutils/ccompiler.py
@@ -3,8 +3,6 @@
Contains CCompiler, an abstract base class that defines the interface
for the Distutils compiler abstraction model."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os, re
diff --git a/Lib/distutils/cmd.py b/Lib/distutils/cmd.py
index 3cd5858..267cf18 100644
--- a/Lib/distutils/cmd.py
+++ b/Lib/distutils/cmd.py
@@ -4,8 +4,6 @@ Provides the Command class, the base class for the command classes
in the distutils.command package.
"""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os, string, re
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py
index 0888c27..add83f8 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."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
__all__ = ['build',
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py
index ca3da74..3df5ef4 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)."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py
index f740c46..7324c6c 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)."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os
diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py
index 9aa7030..a48e0f1 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)."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os, string
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py
index f18e318..ad6eee8 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."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os, string
diff --git a/Lib/distutils/command/build.py b/Lib/distutils/command/build.py
index 7462e93..84e0502 100644
--- a/Lib/distutils/command/build.py
+++ b/Lib/distutils/command/build.py
@@ -2,8 +2,6 @@
Implements the Distutils 'build' command."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py
index 69d8c75..fe921fb 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."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index 1461409..fbf2a0b 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)."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os, string, re
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py
index 3bf1267..d9c1574 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."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import string, os
diff --git a/Lib/distutils/command/build_scripts.py b/Lib/distutils/command/build_scripts.py
index 104be0b..48e06aa 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."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os, re
diff --git a/Lib/distutils/command/clean.py b/Lib/distutils/command/clean.py
index 02189c5..ba03d1f 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
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py
index 520c1b0..6b358cf 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".
"""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os, string, re
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index 44c7692..adc9daf 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -4,8 +4,6 @@ Implements the Distutils 'install' command."""
from distutils import log
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os, string
diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py
index 1069830..cb11371 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
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os
diff --git a/Lib/distutils/command/install_headers.py b/Lib/distutils/command/install_headers.py
index 4895240..c25b771 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."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
from distutils.core import Command
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index 81107a8..fed7e53 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -1,5 +1,3 @@
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os
diff --git a/Lib/distutils/command/install_scripts.py b/Lib/distutils/command/install_scripts.py
index fe93ef5..29cd9e7 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
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index 27883fd6..6ce8c43 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)."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os, string
diff --git a/Lib/distutils/core.py b/Lib/distutils/core.py
index 62a3389..0e85ca6 100644
--- a/Lib/distutils/core.py
+++ b/Lib/distutils/core.py
@@ -6,8 +6,6 @@ indirectly provides the Distribution and Command classes, although they are
really defined in distutils.dist and distutils.cmd.
"""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os
diff --git a/Lib/distutils/cygwinccompiler.py b/Lib/distutils/cygwinccompiler.py
index 94a7bd9..3ac1dce 100644
--- a/Lib/distutils/cygwinccompiler.py
+++ b/Lib/distutils/cygwinccompiler.py
@@ -45,8 +45,6 @@ cygwin in no-cygwin mode).
# * mingw gcc 3.2/ld 2.13 works
# (ld supports -shared)
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os,sys,copy
diff --git a/Lib/distutils/debug.py b/Lib/distutils/debug.py
index b67139c..2886744 100644
--- a/Lib/distutils/debug.py
+++ b/Lib/distutils/debug.py
@@ -1,7 +1,5 @@
import os
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
# If DISTUTILS_DEBUG is anything other than the empty string, we run in
diff --git a/Lib/distutils/dep_util.py b/Lib/distutils/dep_util.py
index 2c6d792..39eecfb 100644
--- a/Lib/distutils/dep_util.py
+++ b/Lib/distutils/dep_util.py
@@ -4,8 +4,6 @@ Utility functions for simple, timestamp-based dependency of files
and groups of files; also, function based entirely on such
timestamp dependency analysis."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os
diff --git a/Lib/distutils/dir_util.py b/Lib/distutils/dir_util.py
index 77f2532..54f5c68 100644
--- a/Lib/distutils/dir_util.py
+++ b/Lib/distutils/dir_util.py
@@ -2,8 +2,6 @@
Utility functions for manipulating directories and directory trees."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os, sys
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py
index 18cc910..3dd776c 100644
--- a/Lib/distutils/dist.py
+++ b/Lib/distutils/dist.py
@@ -4,8 +4,6 @@ Provides the Distribution class, which represents the module distribution
being built/installed/distributed.
"""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os, string, re
diff --git a/Lib/distutils/errors.py b/Lib/distutils/errors.py
index e72221b..963d833 100644
--- a/Lib/distutils/errors.py
+++ b/Lib/distutils/errors.py
@@ -8,8 +8,6 @@ usually raised for errors that are obviously the end-user's fault
This module is safe to use in "from ... import *" mode; it only exports
symbols whose names start with "Distutils" and end with "Error"."""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
class DistutilsError (Exception):
diff --git a/Lib/distutils/fancy_getopt.py b/Lib/distutils/fancy_getopt.py
index 31cf0c5..e19319a 100644
--- a/Lib/distutils/fancy_getopt.py
+++ b/Lib/distutils/fancy_getopt.py
@@ -8,8 +8,6 @@ additional features:
* options set attributes of a passed-in object
"""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, string, re
diff --git a/Lib/distutils/file_util.py b/Lib/distutils/file_util.py
index 37b152e..3af6344 100644
--- a/Lib/distutils/file_util.py
+++ b/Lib/distutils/file_util.py
@@ -3,8 +3,6 @@
Utility functions for operating on single files.
"""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os
diff --git a/Lib/distutils/filelist.py b/Lib/distutils/filelist.py
index 6d27cce..51a1d57 100644
--- a/Lib/distutils/filelist.py
+++ b/Lib/distutils/filelist.py
@@ -4,8 +4,6 @@ Provides the FileList class, used for poking about the filesystem
and building lists of files.
"""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import os, string, re
diff --git a/Lib/distutils/log.py b/Lib/distutils/log.py
index 95d4c1c..fcaa545 100644
--- a/Lib/distutils/log.py
+++ b/Lib/distutils/log.py
@@ -1,7 +1,5 @@
"""A simple log mechanism styled after PEP 282."""
-# This module should be kept compatible with Python 2.1.
-
# The class here is styled after PEP 282 so that it could later be
# replaced with a standard Python logging implementation.
diff --git a/Lib/distutils/msvccompiler.py b/Lib/distutils/msvccompiler.py
index 30a9fc6..d38afb7 100644
--- a/Lib/distutils/msvccompiler.py
+++ b/Lib/distutils/msvccompiler.py
@@ -8,8 +8,6 @@ for the Microsoft Visual Studio.
# hacked by Robin Becker and Thomas Heller to do a better job of
# finding DevStudio (through the registry)
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os, string
diff --git a/Lib/distutils/spawn.py b/Lib/distutils/spawn.py
index e5654ff..a6d3426 100644
--- a/Lib/distutils/spawn.py
+++ b/Lib/distutils/spawn.py
@@ -6,8 +6,6 @@ Also provides the 'find_executable()' to search the path for a given
executable name.
"""
-# This module should be kept compatible with Python 2.1.
-
__revision__ = "$Id$"
import sys, os, string