Commit 5712b12c authored by Martin v. Löwis's avatar Martin v. Löwis

Update compatibility comments to 2.1, corresponding to PEP 291 1.13.

parent d0a2baff
...@@ -8,7 +8,7 @@ used from a setup script as ...@@ -8,7 +8,7 @@ used from a setup script as
setup (...) setup (...)
""" """
# This module should be kept compatible with Python 1.5.2. # This module should be kept compatible with Python 2.1.
__revision__ = "$Id$" __revision__ = "$Id$"
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
Utility functions for creating archive files (tarballs, zip files, Utility functions for creating archive files (tarballs, zip files,
that sort of thing).""" 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$" __revision__ = "$Id$"
......
...@@ -11,7 +11,7 @@ for the Borland C++ compiler. ...@@ -11,7 +11,7 @@ for the Borland C++ compiler.
# someone should sit down and factor out the common code as # someone should sit down and factor out the common code as
# WindowsCCompiler! --GPW # 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$" __revision__ = "$Id$"
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
Contains CCompiler, an abstract base class that defines the interface Contains CCompiler, an abstract base class that defines the interface
for the Distutils compiler abstraction model.""" 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$" __revision__ = "$Id$"
......
...@@ -4,7 +4,7 @@ Provides the Command class, the base class for the command classes ...@@ -4,7 +4,7 @@ Provides the Command class, the base class for the command classes
in the distutils.command package. 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$" __revision__ = "$Id$"
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
Package containing implementation of all the standard Distutils Package containing implementation of all the standard Distutils
commands.""" commands."""
# This module should be kept compatible with Python 1.5.2. # This module should be kept compatible with Python 2.1.
__revision__ = "$Id$" __revision__ = "$Id$"
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
Implements the Distutils 'bdist' command (create a built [binary] Implements the Distutils 'bdist' command (create a built [binary]
distribution).""" distribution)."""
# This module should be kept compatible with Python 1.5.2. # This module should be kept compatible with Python 2.1.
__revision__ = "$Id$" __revision__ = "$Id$"
......
...@@ -4,7 +4,7 @@ Implements the Distutils 'bdist_dumb' command (create a "dumb" built ...@@ -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 distribution -- i.e., just an archive to be unpacked under $prefix or
$exec_prefix).""" $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$" __revision__ = "$Id$"
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
Implements the Distutils 'bdist_rpm' command (create RPM source and binary Implements the Distutils 'bdist_rpm' command (create RPM source and binary
distributions).""" distributions)."""
# This module should be kept compatible with Python 1.5.2. # This module should be kept compatible with Python 2.1.
__revision__ = "$Id$" __revision__ = "$Id$"
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
Implements the Distutils 'bdist_wininst' command: create a windows installer Implements the Distutils 'bdist_wininst' command: create a windows installer
exe-program.""" 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$" __revision__ = "$Id$"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Implements the Distutils 'build' command.""" 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$" __revision__ = "$Id$"
......
...@@ -4,7 +4,7 @@ Implements the Distutils 'build_clib' command, to build a C/C++ library ...@@ -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 that is included in the module distribution and needed by an extension
module.""" module."""
# This module should be kept compatible with Python 1.5.2. # This module should be kept compatible with Python 2.1.
__revision__ = "$Id$" __revision__ = "$Id$"
......
...@@ -4,7 +4,7 @@ Implements the Distutils 'build_ext' command, for building extension ...@@ -4,7 +4,7 @@ Implements the Distutils 'build_ext' command, for building extension
modules (currently limited to C extensions, should accommodate C++ modules (currently limited to C extensions, should accommodate C++
extensions ASAP).""" 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$" __revision__ = "$Id$"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Implements the Distutils 'build_py' command.""" 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$" __revision__ = "$Id$"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Implements the Distutils 'build_scripts' command.""" 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$" __revision__ = "$Id$"
......
...@@ -4,7 +4,7 @@ Implements the Distutils 'clean' command.""" ...@@ -4,7 +4,7 @@ Implements the Distutils 'clean' command."""
# contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18 # 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$" __revision__ = "$Id$"
......
...@@ -9,7 +9,7 @@ configure-like tasks: "try to compile this C code", or "figure out where ...@@ -9,7 +9,7 @@ configure-like tasks: "try to compile this C code", or "figure out where
this header file lives". 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$" __revision__ = "$Id$"
......
...@@ -4,7 +4,7 @@ Implements the Distutils 'install' command.""" ...@@ -4,7 +4,7 @@ Implements the Distutils 'install' command."""
from distutils import log 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$" __revision__ = "$Id$"
......
...@@ -5,7 +5,7 @@ platform-independent data files.""" ...@@ -5,7 +5,7 @@ platform-independent data files."""
# contributed by Bastian Kleineidam # 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$" __revision__ = "$Id$"
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
Implements the Distutils 'install_headers' command, to install C/C++ header Implements the Distutils 'install_headers' command, to install C/C++ header
files to the Python include directory.""" 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$" __revision__ = "$Id$"
......
# This module should be kept compatible with Python 1.5.2. # This module should be kept compatible with Python 2.1.
__revision__ = "$Id$" __revision__ = "$Id$"
......
...@@ -5,7 +5,7 @@ Python scripts.""" ...@@ -5,7 +5,7 @@ Python scripts."""
# contributed by Bastian Kleineidam # 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$" __revision__ = "$Id$"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Implements the Distutils 'sdist' command (create a source distribution).""" 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$" __revision__ = "$Id$"
......
...@@ -6,7 +6,7 @@ indirectly provides the Distribution and Command classes, although they are ...@@ -6,7 +6,7 @@ indirectly provides the Distribution and Command classes, although they are
really defined in distutils.dist and distutils.cmd. 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$" __revision__ = "$Id$"
......
...@@ -45,7 +45,7 @@ cygwin in no-cygwin mode). ...@@ -45,7 +45,7 @@ cygwin in no-cygwin mode).
# * mingw gcc 3.2/ld 2.13 works # * mingw gcc 3.2/ld 2.13 works
# (ld supports -shared) # (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$" __revision__ = "$Id$"
......
import os 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$" __revision__ = "$Id$"
......
...@@ -4,7 +4,7 @@ Utility functions for simple, timestamp-based dependency of files ...@@ -4,7 +4,7 @@ Utility functions for simple, timestamp-based dependency of files
and groups of files; also, function based entirely on such and groups of files; also, function based entirely on such
timestamp dependency analysis.""" 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$" __revision__ = "$Id$"
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
Utility functions for manipulating directories and directory trees.""" 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$" __revision__ = "$Id$"
......
...@@ -4,7 +4,7 @@ Provides the Distribution class, which represents the module distribution ...@@ -4,7 +4,7 @@ Provides the Distribution class, which represents the module distribution
being built/installed/distributed. 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$" __revision__ = "$Id$"
......
...@@ -8,7 +8,7 @@ usually raised for errors that are obviously the end-user's fault ...@@ -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 This module is safe to use in "from ... import *" mode; it only exports
symbols whose names start with "Distutils" and end with "Error".""" 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$" __revision__ = "$Id$"
......
...@@ -8,7 +8,7 @@ additional features: ...@@ -8,7 +8,7 @@ additional features:
* options set attributes of a passed-in object * 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$" __revision__ = "$Id$"
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
Utility functions for operating on single files. 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$" __revision__ = "$Id$"
......
...@@ -4,7 +4,7 @@ Provides the FileList class, used for poking about the filesystem ...@@ -4,7 +4,7 @@ Provides the FileList class, used for poking about the filesystem
and building lists of files. 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$" __revision__ = "$Id$"
......
"""A simple log mechanism styled after PEP 282.""" """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 # The class here is styled after PEP 282 so that it could later be
# replaced with a standard Python logging implementation. # replaced with a standard Python logging implementation.
......
...@@ -8,7 +8,7 @@ for the Microsoft Visual Studio. ...@@ -8,7 +8,7 @@ for the Microsoft Visual Studio.
# hacked by Robin Becker and Thomas Heller to do a better job of # hacked by Robin Becker and Thomas Heller to do a better job of
# finding DevStudio (through the registry) # 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$" __revision__ = "$Id$"
......
...@@ -4,7 +4,7 @@ Contains MWerksCompiler, an implementation of the abstract CCompiler class ...@@ -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 for MetroWerks CodeWarrior on the Macintosh. Needs work to support CW on
Windows.""" Windows."""
# This module should be kept compatible with Python 1.5.2. # This module should be kept compatible with Python 2.1.
__revision__ = "$Id$" __revision__ = "$Id$"
......
...@@ -6,7 +6,7 @@ Also provides the 'find_executable()' to search the path for a given ...@@ -6,7 +6,7 @@ Also provides the 'find_executable()' to search the path for a given
executable name. 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$" __revision__ = "$Id$"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment