diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-01-25 22:09:10 (GMT) |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-01-25 22:09:10 (GMT) |
| commit | 9f369e91632a9249074049719e31ccb13d8ae039 (patch) | |
| tree | d96cc225fc5feac2f87cf9586cfb571b09494097 /Lib/distutils/command | |
| parent | 68d919e4d60b49d7252bf3a3a53299bbad86fe68 (diff) | |
| download | cpython-9f369e91632a9249074049719e31ccb13d8ae039.zip cpython-9f369e91632a9249074049719e31ccb13d8ae039.tar.gz cpython-9f369e91632a9249074049719e31ccb13d8ae039.tar.bz2 | |
Issue #5052: removed backward compatibility information (out of date)
Diffstat (limited to 'Lib/distutils/command')
| -rw-r--r-- | Lib/distutils/command/__init__.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/bdist.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/bdist_dumb.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/bdist_rpm.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/bdist_wininst.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/build.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/build_clib.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/build_ext.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/build_py.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/build_scripts.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/clean.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/config.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/install.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/install_data.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/install_headers.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/install_lib.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/install_scripts.py | 2 | ||||
| -rw-r--r-- | Lib/distutils/command/sdist.py | 2 |
18 files changed, 0 insertions, 36 deletions
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 |
