[Python-checkins] python/dist/src/Lib/distutils/command __init__.py,1.16,1.17 bdist.py,1.27,1.28 bdist_dumb.py,1.21,1.22 bdist_rpm.py,1.36,1.37 bdist_wininst.py,1.42,1.43 build.py,1.33,1.34 build_clib.py,1.26,1.27 build_ext.py,1.90,1.91 build_py.py,1.40,1.41 build_scripts.py,1.17,1.18 clean.py,1.14,1.15 config.py,1.14,1.15 install.py,1.66,1.67 install_data.py,1.19,1.20 install_headers.py,1.9,1.10 install_lib.py,1.41,1.42 install_scripts.py,1.13,1.14 sdist.py,1.55,1.56

akuchling@users.sourceforge.net akuchling@users.sourceforge.net
Tue, 19 Nov 2002 05:12:31 -0800


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory sc8-pr-cvs1:/tmp/cvs-serv14626/command

Modified Files:
	__init__.py bdist.py bdist_dumb.py bdist_rpm.py 
	bdist_wininst.py build.py build_clib.py build_ext.py 
	build_py.py build_scripts.py clean.py config.py install.py 
	install_data.py install_headers.py install_lib.py 
	install_scripts.py sdist.py 
Log Message:
Add comment to Distutil files about requiring 1.5.2 compatibility, as 
    suggested by PEP 291.


Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/__init__.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** __init__.py	4 Oct 2002 09:23:44 -0000	1.16
--- __init__.py	19 Nov 2002 13:12:27 -0000	1.17
***************
*** 4,7 ****
--- 4,9 ----
  commands."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: bdist.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist.py,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** bdist.py	14 Nov 2002 02:25:42 -0000	1.27
--- bdist.py	19 Nov 2002 13:12:28 -0000	1.28
***************
*** 4,7 ****
--- 4,9 ----
  distribution)."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: bdist_dumb.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist_dumb.py,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** bdist_dumb.py	14 Nov 2002 02:25:42 -0000	1.21
--- bdist_dumb.py	19 Nov 2002 13:12:28 -0000	1.22
***************
*** 5,8 ****
--- 5,10 ----
  $exec_prefix)."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: bdist_rpm.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist_rpm.py,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** bdist_rpm.py	14 Nov 2002 02:25:42 -0000	1.36
--- bdist_rpm.py	19 Nov 2002 13:12:28 -0000	1.37
***************
*** 4,7 ****
--- 4,9 ----
  distributions)."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: bdist_wininst.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist_wininst.py,v
retrieving revision 1.42
retrieving revision 1.43
diff -C2 -d -r1.42 -r1.43
*** bdist_wininst.py	14 Nov 2002 02:25:42 -0000	1.42
--- bdist_wininst.py	19 Nov 2002 13:12:28 -0000	1.43
***************
*** 4,7 ****
--- 4,9 ----
  exe-program."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: build.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build.py,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** build.py	14 Nov 2002 02:25:42 -0000	1.33
--- build.py	19 Nov 2002 13:12:28 -0000	1.34
***************
*** 3,6 ****
--- 3,8 ----
  Implements the Distutils 'build' command."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: build_clib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_clib.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** build_clib.py	14 Nov 2002 02:25:42 -0000	1.26
--- build_clib.py	19 Nov 2002 13:12:28 -0000	1.27
***************
*** 5,8 ****
--- 5,10 ----
  module."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: build_ext.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_ext.py,v
retrieving revision 1.90
retrieving revision 1.91
diff -C2 -d -r1.90 -r1.91
*** build_ext.py	14 Nov 2002 02:25:42 -0000	1.90
--- build_ext.py	19 Nov 2002 13:12:28 -0000	1.91
***************
*** 5,8 ****
--- 5,10 ----
  extensions ASAP)."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: build_py.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_py.py,v
retrieving revision 1.40
retrieving revision 1.41
diff -C2 -d -r1.40 -r1.41
*** build_py.py	14 Nov 2002 02:25:42 -0000	1.40
--- build_py.py	19 Nov 2002 13:12:28 -0000	1.41
***************
*** 3,6 ****
--- 3,8 ----
  Implements the Distutils 'build_py' command."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: build_scripts.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_scripts.py,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** build_scripts.py	14 Nov 2002 02:25:42 -0000	1.17
--- build_scripts.py	19 Nov 2002 13:12:28 -0000	1.18
***************
*** 3,6 ****
--- 3,8 ----
  Implements the Distutils 'build_scripts' command."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: clean.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/clean.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** clean.py	6 Jun 2002 14:54:56 -0000	1.14
--- clean.py	19 Nov 2002 13:12:28 -0000	1.15
***************
*** 5,8 ****
--- 5,10 ----
  # contributed by Bastian Kleineidam <calvin@cs.uni-sb.de>, added 2000-03-18
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: config.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/config.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** config.py	14 Nov 2002 02:25:42 -0000	1.14
--- config.py	19 Nov 2002 13:12:28 -0000	1.15
***************
*** 10,13 ****
--- 10,15 ----
  """
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: install.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/install.py,v
retrieving revision 1.66
retrieving revision 1.67
diff -C2 -d -r1.66 -r1.67
*** install.py	14 Nov 2002 02:25:42 -0000	1.66
--- install.py	19 Nov 2002 13:12:28 -0000	1.67
***************
*** 5,8 ****
--- 5,10 ----
  from distutils import log
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: install_data.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/install_data.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -d -r1.19 -r1.20
*** install_data.py	4 Sep 2001 20:42:08 -0000	1.19
--- install_data.py	19 Nov 2002 13:12:28 -0000	1.20
***************
*** 6,9 ****
--- 6,11 ----
  # contributed by Bastian Kleineidam
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: install_headers.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/install_headers.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** install_headers.py	14 Nov 2002 02:25:42 -0000	1.9
--- install_headers.py	19 Nov 2002 13:12:28 -0000	1.10
***************
*** 4,7 ****
--- 4,9 ----
  files to the Python include directory."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: install_lib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/install_lib.py,v
retrieving revision 1.41
retrieving revision 1.42
diff -C2 -d -r1.41 -r1.42
*** install_lib.py	14 Nov 2002 02:25:42 -0000	1.41
--- install_lib.py	19 Nov 2002 13:12:28 -0000	1.42
***************
*** 1,2 ****
--- 1,4 ----
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: install_scripts.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/install_scripts.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** install_scripts.py	4 Jun 2002 20:30:10 -0000	1.13
--- install_scripts.py	19 Nov 2002 13:12:28 -0000	1.14
***************
*** 6,9 ****
--- 6,11 ----
  # contributed by Bastian Kleineidam
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"
  

Index: sdist.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/sdist.py,v
retrieving revision 1.55
retrieving revision 1.56
diff -C2 -d -r1.55 -r1.56
*** sdist.py	14 Nov 2002 02:25:42 -0000	1.55
--- sdist.py	19 Nov 2002 13:12:28 -0000	1.56
***************
*** 3,6 ****
--- 3,8 ----
  Implements the Distutils 'sdist' command (create a source distribution)."""
  
+ # This module should be kept compatible with Python 1.5.2.
+ 
  __revision__ = "$Id$"