]> granicus.if.org Git - python/commitdiff
Issue #5052: removed backward compatibility information (out of date)
authorTarek Ziadé <ziade.tarek@gmail.com>
Sun, 25 Jan 2009 22:09:10 +0000 (22:09 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Sun, 25 Jan 2009 22:09:10 +0000 (22:09 +0000)
36 files changed:
Lib/distutils/__init__.py
Lib/distutils/archive_util.py
Lib/distutils/bcppcompiler.py
Lib/distutils/ccompiler.py
Lib/distutils/cmd.py
Lib/distutils/command/__init__.py
Lib/distutils/command/bdist.py
Lib/distutils/command/bdist_dumb.py
Lib/distutils/command/bdist_rpm.py
Lib/distutils/command/bdist_wininst.py
Lib/distutils/command/build.py
Lib/distutils/command/build_clib.py
Lib/distutils/command/build_ext.py
Lib/distutils/command/build_py.py
Lib/distutils/command/build_scripts.py
Lib/distutils/command/clean.py
Lib/distutils/command/config.py
Lib/distutils/command/install.py
Lib/distutils/command/install_data.py
Lib/distutils/command/install_headers.py
Lib/distutils/command/install_lib.py
Lib/distutils/command/install_scripts.py
Lib/distutils/command/sdist.py
Lib/distutils/core.py
Lib/distutils/cygwinccompiler.py
Lib/distutils/debug.py
Lib/distutils/dep_util.py
Lib/distutils/dir_util.py
Lib/distutils/dist.py
Lib/distutils/errors.py
Lib/distutils/fancy_getopt.py
Lib/distutils/file_util.py
Lib/distutils/filelist.py
Lib/distutils/log.py
Lib/distutils/msvccompiler.py
Lib/distutils/spawn.py

index 7315a3727127d5be55bb2e5c9a0933c293720846..57fcf97602af231aff856c267dcec3dd11205c4d 100644 (file)
@@ -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
index 264e66faf2171309556d5d681aa731df95a9d00f..b50563e3174a5213ec7647daaf048e7ebadc154e 100644 (file)
@@ -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
index d4fc53366fdada51d789b41f9b0409fb9ab90ff5..5a0fa727cd82433cc48f60e3b088c4248b10034f 100644 (file)
@@ -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$"
 
 
index aa92a9f1744ce34ca8fd745a2f0d2ae010419e00..a56a03880e89ab99c681d65f4e9ebacf8d3fa0a0 100644 (file)
@@ -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
index 3cd5858920ca6c74b355c63b4e8397975c32ab98..267cf1802e4cc1b536794e77ce422bdeb0c5813a 100644 (file)
@@ -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
index 0888c2712b667e2d626032e3940a86acd91ff3bf..add83f8740ecbd8adaa8bbfe09e0ef7f500c3d84 100644 (file)
@@ -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',
index ca3da74c0672e7284e0c3fe1dfb82f9ca88ef8ee..3df5ef4c42098e7ccf62fccdaac9bb513c9f4d86 100644 (file)
@@ -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
index f740c468e7f6575b7080d0ba4618b4b551871348..7324c6c2faa712ffd33126bc055374cf64666c5c 100644 (file)
@@ -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
index 9aa70300493397ea4d0eff2108601fd3ef2f9663..a48e0f186ffdd9e6228caaae42d6b62f6ae2bff4 100644 (file)
@@ -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
index f18e318cb91b6e3e91ca8bb1e71dcf9524340a52..ad6eee8ea82747766e4781a36e9b4e2fbdfb1485 100644 (file)
@@ -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
index 7462e9348fcddb271b7e12800b2696cf46d0fcbb..84e050204e145a35abb98d92c87c028c936d4fa7 100644 (file)
@@ -2,8 +2,6 @@
 
 Implements the Distutils 'build' command."""
 
-# This module should be kept compatible with Python 2.1.
-
 __revision__ = "$Id$"
 
 import sys, os
index 69d8c75166d4582611e956d8888e42eaf1e3fd7f..fe921fb88b5026bb1e8b4211e0158700d982b6a2 100644 (file)
@@ -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$"
 
 
index 1461409f605727a0ed1b94f8e5346414c99fa76f..fbf2a0b217df578ab95cf7e665e1e0cb61cf3050 100644 (file)
@@ -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
index 3bf126732831b4c597f1603728bc9a6f39e1f271..d9c15749d07ae90e06a6652b5f8e8b8e70e5337f 100644 (file)
@@ -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
index 104be0b349c6d185bf84db7deaf3002e79bafbde..48e06aa562748326ce799f676c283783432789d0 100644 (file)
@@ -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
index 02189c531a8e7be1aed789e6e53561412ae6f372..ba03d1fff6a57d1f4029f656226e7c058811ce1f 100644 (file)
@@ -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
index 520c1b0c7632452c19efa12deaa23cef016ef942..6b358cf2505bb3f5b35a4e082330c22e356337eb 100644 (file)
@@ -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
index 44c76926ea678d10fec82abc330e67a26e7ce07c..adc9daf11ae9e2ac771e3da2c27cd2f73c66f076 100644 (file)
@@ -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
index 1069830fb3168e9c54a595eae3dbc251a4da61e7..cb11371023792851600c49b1efe64e911a780591 100644 (file)
@@ -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
index 4895240a4cd203d579088fcfef702490d332a9eb..c25b771246890bd37d1762a008cfffb9470abe5d 100644 (file)
@@ -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
index 81107a85cb56b078357d038b2d886ed8a6f68074..fed7e5363d5c5e8ed9c32874b403756d5fb35373 100644 (file)
@@ -1,5 +1,3 @@
-# This module should be kept compatible with Python 2.1.
-
 __revision__ = "$Id$"
 
 import os
index fe93ef5af2374dcc415c77c063f37321d9eb36d7..29cd9e7a0e394ec18ca4d8811cbf424454ce4009 100644 (file)
@@ -5,8 +5,6 @@ Python scripts."""
 
 # contributed by Bastian Kleineidam
 
-# This module should be kept compatible with Python 2.1.
-
 __revision__ = "$Id$"
 
 import os
index 27883fd68b92bf975595f4cc70e9c5b43f8a067b..6ce8c43ddcf5f16e7ce0c1ee57a546f2a5a3faeb 100644 (file)
@@ -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
index 62a3389b53801e1175f956ff94b71ab3a51e6a4d..0e85ca6f06e33efd7f994e73990a5522f62104c6 100644 (file)
@@ -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
index 94a7bd96ee325552da39abe30c335ca908082678..3ac1dceb3e6f8ee128b4144fdf073698cec98955 100644 (file)
@@ -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
index b67139c7d42edaf51d7fd814c58f99226397e8a2..2886744402e1b5c219f5bbfcc5aab32418632e86 100644 (file)
@@ -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
index 2c6d7927f019f949a49cea9f9fa1b6fb6c949b0b..39eecfb248750965dead46d284f58156abe8364d 100644 (file)
@@ -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
index 77f253255fc7223cb6757301faa8bca7f900824e..54f5c68e28ecf69c78949fad74285179fda97a65 100644 (file)
@@ -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
index 18cc910900a9886639d175cd54383334be4c230b..3dd776ccd2d4d5226d4de9f1e38a1e15745979ad 100644 (file)
@@ -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
index e72221bdba97e30e383b909eb29cd82908099efc..963d83377c08f23ec39e05b43eacca0f5a329225 100644 (file)
@@ -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):
index 31cf0c5c3b9c4e0564df9e2eb2046009b5bbb53f..e19319ae9d0a8a8285818f20580f721f40aec3be 100644 (file)
@@ -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
index 37b152ed8a390247a6f54fa6778e0858d44c2a0d..3af6344f111d98f97d705360cf4972a89268ab55 100644 (file)
@@ -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
index 6d27cce64fcf135e70ed10be6e838cde5d1b223f..51a1d57e13d30ce64a15134cef70105ad6582591 100644 (file)
@@ -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
index 95d4c1c5a21f0cb9041f29b7ea3caf8c8ae99278..fcaa545a79992f22ec3b2f5354aeb5b8f4e77e44 100644 (file)
@@ -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.
 
index 30a9fc6f223e32a7b52f8d5d9cb66e11d0caf8d0..d38afb72238d3bb1ad8e03f489008cc3cf276af2 100644 (file)
@@ -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
index e5654ff0096b07917241825b130e130225bf318f..a6d342639043b3494ce496fa3aff2108c12b888b 100644 (file)
@@ -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