summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command
diff options
context:
space:
mode:
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/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
18 files changed, 18 insertions, 18 deletions
diff --git a/Lib/distutils/command/__init__.py b/Lib/distutils/command/__init__.py
index 870005d..0888c27 100644
--- a/Lib/distutils/command/__init__.py
+++ b/Lib/distutils/command/__init__.py
@@ -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$"
diff --git a/Lib/distutils/command/bdist.py b/Lib/distutils/command/bdist.py
index 4eca9c3..23c25a5 100644
--- a/Lib/distutils/command/bdist.py
+++ b/Lib/distutils/command/bdist.py
@@ -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$"
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py
index 3db332d..7f498c8 100644
--- a/Lib/distutils/command/bdist_dumb.py
+++ b/Lib/distutils/command/bdist_dumb.py
@@ -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$"
diff --git a/Lib/distutils/command/bdist_rpm.py b/Lib/distutils/command/bdist_rpm.py
index 7f1b440..8eaaff3 100644
--- a/Lib/distutils/command/bdist_rpm.py
+++ b/Lib/distutils/command/bdist_rpm.py
@@ -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$"
diff --git a/Lib/distutils/command/bdist_wininst.py b/Lib/distutils/command/bdist_wininst.py
index f4bab62..9b45cf3 100644
--- a/Lib/distutils/command/bdist_wininst.py
+++ b/Lib/distutils/command/bdist_wininst.py
@@ -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$"
diff --git a/Lib/distutils/command/build.py b/Lib/distutils/command/build.py
index e6b3991..9ae0a29 100644
--- a/Lib/distutils/command/build.py
+++ b/Lib/distutils/command/build.py
@@ -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$"
diff --git a/Lib/distutils/command/build_clib.py b/Lib/distutils/command/build_clib.py
index ef03ed7..69d8c75 100644
--- a/Lib/distutils/command/build_clib.py
+++ b/Lib/distutils/command/build_clib.py
@@ -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$"
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index 07614c6..4191c76 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -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$"
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py
index 3079bfc..621bcb4 100644
--- a/Lib/distutils/command/build_py.py
+++ b/Lib/distutils/command/build_py.py
@@ -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$"
diff --git a/Lib/distutils/command/build_scripts.py b/Lib/distutils/command/build_scripts.py
index fb73719..bda4480 100644
--- a/Lib/distutils/command/build_scripts.py
+++ b/Lib/distutils/command/build_scripts.py
@@ -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$"
diff --git a/Lib/distutils/command/clean.py b/Lib/distutils/command/clean.py
index 41b2277..1844ffe 100644
--- a/Lib/distutils/command/clean.py
+++ b/Lib/distutils/command/clean.py
@@ -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$"
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py
index f18c79f..520c1b0 100644
--- a/Lib/distutils/command/config.py
+++ b/Lib/distutils/command/config.py
@@ -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$"
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py
index 2aaf010..fdbec35 100644
--- a/Lib/distutils/command/install.py
+++ b/Lib/distutils/command/install.py
@@ -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$"
diff --git a/Lib/distutils/command/install_data.py b/Lib/distutils/command/install_data.py
index 2fa0da2..1069830 100644
--- a/Lib/distutils/command/install_data.py
+++ b/Lib/distutils/command/install_data.py
@@ -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$"
diff --git a/Lib/distutils/command/install_headers.py b/Lib/distutils/command/install_headers.py
index 3a37d30..2bd1b04 100644
--- a/Lib/distutils/command/install_headers.py
+++ b/Lib/distutils/command/install_headers.py
@@ -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$"
diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py
index c234117..22d0ab3 100644
--- a/Lib/distutils/command/install_lib.py
+++ b/Lib/distutils/command/install_lib.py
@@ -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$"
diff --git a/Lib/distutils/command/install_scripts.py b/Lib/distutils/command/install_scripts.py
index abe1045..fe93ef5 100644
--- a/Lib/distutils/command/install_scripts.py
+++ b/Lib/distutils/command/install_scripts.py
@@ -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$"
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index 7021496..fe6c913 100644
--- a/Lib/distutils/command/sdist.py
+++ b/Lib/distutils/command/sdist.py
@@ -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$"