]> granicus.if.org Git - python/commitdiff
Update compatibility comments to 2.1, corresponding to PEP 291 1.13.
authorMartin v. Löwis <martin@v.loewis.de>
Wed, 10 Nov 2004 22:23:15 +0000 (22:23 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Wed, 10 Nov 2004 22:23:15 +0000 (22:23 +0000)
37 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/mwerkscompiler.py
Lib/distutils/spawn.py

index 2592a6c559d26e87a912d14ad4baddc266755dd4..a1dbb4b5efd12d01fe723a3ac2d5ca021eee439f 100644 (file)
@@ -8,7 +8,7 @@ used from a setup script as
    setup (...)
 """
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 55babe6fc693dfafaaa9795b877d1aba7e9532a9..6aa5e635d7164370fb0d8d425d92f6ad61c34d8a 100644 (file)
@@ -3,7 +3,7 @@
 Utility functions for creating archive files (tarballs, zip files,
 that sort of thing)."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index f995e3671175c463c94c2a01e4936b54a737b8ee..ca524a5b88ed86c40689d70ed607f281fd260306 100644 (file)
@@ -11,7 +11,7 @@ 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 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index e5b9d7cc11c1c7e14289dfce1bd499cacc08aaaf..6dad757a6a7906bce506f6f0a4e42bc4b7f1aa13 100644 (file)
@@ -3,7 +3,7 @@
 Contains CCompiler, an abstract base class that defines the interface
 for the Distutils compiler abstraction model."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index be8e826fdbfa01578077d61c3005befbfa09d2c8..3cd5858920ca6c74b355c63b4e8397975c32ab98 100644 (file)
@@ -4,7 +4,7 @@ Provides the Command class, the base class for the command classes
 in the distutils.command package.
 """
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 870005dca72b339b842ecc55f66aaa218c752c5e..0888c2712b667e2d626032e3940a86acd91ff3bf 100644 (file)
@@ -3,7 +3,7 @@
 Package containing implementation of all the standard Distutils
 commands."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 4eca9c3426bbe2d20289c776dd6700f2d0696b97..23c25a55a8793cf048bb5444f34a4e2edc97f87e 100644 (file)
@@ -3,7 +3,7 @@
 Implements the Distutils 'bdist' command (create a built [binary]
 distribution)."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 3db332d5bd7893e24a470bd0932ef34ff4133c13..7f498c839612dbd2aef0068f3db688a27e586930 100644 (file)
@@ -4,7 +4,7 @@ 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 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 7f1b440e059d1e892d095dcb773c1f56c36dbe8e..8eaaff324699c7a083d971793112305f44043341 100644 (file)
@@ -3,7 +3,7 @@
 Implements the Distutils 'bdist_rpm' command (create RPM source and binary
 distributions)."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index f4bab62ae3a8d13e3ef3701545f0c69035c26486..9b45cf35e837ccce89c9d6e63e9949070bc334ce 100644 (file)
@@ -3,7 +3,7 @@
 Implements the Distutils 'bdist_wininst' command: create a windows installer
 exe-program."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index e6b3991f150a458cbc39bb162edcd33f140b0929..9ae0a292a325b0ac20fe9708410658db38d9f670 100644 (file)
@@ -2,7 +2,7 @@
 
 Implements the Distutils 'build' command."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index ef03ed7269aea8b4ff2babd2f51813a62a0f708c..69d8c75166d4582611e956d8888e42eaf1e3fd7f 100644 (file)
@@ -4,7 +4,7 @@ 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 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 07614c6a0d3a548ec7caea176535ac199445a655..4191c76cefe3011aa2a76f2fadfc2b4140656d3e 100644 (file)
@@ -4,7 +4,7 @@ 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 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 3079bfcdef3da181d117e3d5239cb2033877cb6c..621bcb4af3cde17304a30aa4975edd3ee47510af 100644 (file)
@@ -2,7 +2,7 @@
 
 Implements the Distutils 'build_py' command."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index fb73719f57e00e2f48690f41537991740f859f28..bda4480ca59e0b69d2aae172a2d2a153b4b6c673 100644 (file)
@@ -2,7 +2,7 @@
 
 Implements the Distutils 'build_scripts' command."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 41b22777bced9d54f7d7dcd5cc4be410e55762e8..1844ffefd37ca5947a6bd7a4f3931649689efd6b 100644 (file)
@@ -4,7 +4,7 @@ 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 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index f18c79ff4330920ce26ae13c197522c43d92d98e..520c1b0c7632452c19efa12deaa23cef016ef942 100644 (file)
@@ -9,7 +9,7 @@ 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 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 2aaf01056259717747396d13d606fdf21980fb26..fdbec35872a56eb3e1900edafe296381dad3e407 100644 (file)
@@ -4,7 +4,7 @@ Implements the Distutils 'install' command."""
 
 from distutils import log
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 2fa0da29fe9071dfdce5aa8d13f8274aea93a440..1069830fb3168e9c54a595eae3dbc251a4da61e7 100644 (file)
@@ -5,7 +5,7 @@ platform-independent data files."""
 
 # contributed by Bastian Kleineidam
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 3a37d309f90d0c16ade07bb7836be200bca845e0..2bd1b0436788f128002b8c60691405515bb1c098 100644 (file)
@@ -3,7 +3,7 @@
 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 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index c234117adccc8749f86d0526498ffadb39a13f13..22d0ab37a7570cb6eeaef7ed728d793ff4c769eb 100644 (file)
@@ -1,4 +1,4 @@
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index abe10457b666e1ccb64907a421a7d8164e56761a..fe93ef5af2374dcc415c77c063f37321d9eb36d7 100644 (file)
@@ -5,7 +5,7 @@ Python scripts."""
 
 # contributed by Bastian Kleineidam
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 70214965494ae454337548d04a07a1df1eb65310..fe6c9139132e5a1f924d6ab9f1a86fd806743283 100644 (file)
@@ -2,7 +2,7 @@
 
 Implements the Distutils 'sdist' command (create a source distribution)."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 8c828010516e62dcbd28556c082ec249766e7c5b..eba94559d902f305b626577adf1737ba25349840 100644 (file)
@@ -6,7 +6,7 @@ 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 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 31e8e3492f3685bf525e094e39c531edc85b939f..4fd23e6dc60724d43ba378f2b8d6d65ae1a05833 100644 (file)
@@ -45,7 +45,7 @@ cygwin in no-cygwin mode).
 # * mingw gcc 3.2/ld 2.13 works
 #   (ld supports -shared)
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 2a87eb5d283bbde3e98c0da757313d5b60f957e6..b67139c7d42edaf51d7fd814c58f99226397e8a2 100644 (file)
@@ -1,6 +1,6 @@
 import os
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 0746633d23032239fa99143c06753dc644007fd8..c139c852e47c25ca9f81c750dcda874768710048 100644 (file)
@@ -4,7 +4,7 @@ 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 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 77f64c4104578c8f9fa012dd08521082b5037a0e..7f1450373b5c631e7f4ae7698314d710454b55a0 100644 (file)
@@ -2,7 +2,7 @@
 
 Utility functions for manipulating directories and directory trees."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 1a39022fd8af3ad7c700236093f17c86b3ff8f9c..9eb2aa424c154997422cbb8e1daeb436cc48d218 100644 (file)
@@ -4,7 +4,7 @@ Provides the Distribution class, which represents the module distribution
 being built/installed/distributed.
 """
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 94e83fb557ce34f0f90c23cfe629dd3260fe6dd1..e72221bdba97e30e383b909eb29cd82908099efc 100644 (file)
@@ -8,7 +8,7 @@ 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 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 6c1134fc4017a522abbe1e4c23abf2f97cdac6ca..218ed73f9871bc561cf88ae9ac0fd084870a041f 100644 (file)
@@ -8,7 +8,7 @@ additional features:
   * options set attributes of a passed-in object
 """
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index e2b1c5155836cf5d671442aa27fb4e248f1cba05..37b152ed8a390247a6f54fa6778e0858d44c2a0d 100644 (file)
@@ -3,7 +3,7 @@
 Utility functions for operating on single files.
 """
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index 566d87ab2812ad953fa3da98e1a1d108fd7c49e7..43f9aaaf5bb3d43b50a6e6048fb2a805344e7d0d 100644 (file)
@@ -4,7 +4,7 @@ Provides the FileList class, used for poking about the filesystem
 and building lists of files.
 """
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index bf26302fcc4c1d5c41eb124584031e152dd42a53..cf3ee136e0ad405c7131fdb0e69429a45ef2ad12 100644 (file)
@@ -1,6 +1,6 @@
 """A simple log mechanism styled after PEP 282."""
 
-# This module should be kept compatible with Python 1.5.2.
+# 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 ab92801c2b2800ed1366848057d543e42426b9d9..dd9d8928ad7065575f165968f56a5f8235480986 100644 (file)
@@ -8,7 +8,7 @@ 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 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index d546de1f2553696295288447c1757601634ee92c..0de123d9e925d7368d6417fc18136729a2b8e542 100644 (file)
@@ -4,7 +4,7 @@ Contains MWerksCompiler, an implementation of the abstract CCompiler class
 for MetroWerks CodeWarrior on the Macintosh. Needs work to support CW on
 Windows."""
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"
 
index a89b88cebf2d05a28bb71936f1a8c0754526c60c..e5654ff0096b07917241825b130e130225bf318f 100644 (file)
@@ -6,7 +6,7 @@ Also provides the 'find_executable()' to search the path for a given
 executable name.
 """
 
-# This module should be kept compatible with Python 1.5.2.
+# This module should be kept compatible with Python 2.1.
 
 __revision__ = "$Id$"