[Python-checkins] CVS: distutils/examples mxdatetime_setup.py,1.8,1.9 pil_setup.py,1.13,1.14

Greg Ward python-dev@python.org
Thu, 29 Jun 2000 20:46:31 -0700


Update of /cvsroot/python/distutils/examples
In directory slayer.i.sourceforge.net:/tmp/cvs-serv19687/examples

Modified Files:
	mxdatetime_setup.py pil_setup.py 
Log Message:
Added comment to explain that auto-configuration isn't done yet.

Index: mxdatetime_setup.py
===================================================================
RCS file: /cvsroot/python/distutils/examples/mxdatetime_setup.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** mxdatetime_setup.py	2000/06/29 02:22:02	1.8
--- mxdatetime_setup.py	2000/06/30 03:46:28	1.9
***************
*** 12,15 ****
--- 12,21 ----
  from distutils.command.config import config
  
+ # Auto-configuration: this will obsolete manual editing of the setup script
+ # soon, but not yet.  The problem is that there's no way to communicate
+ # what the "config" command finds out to the "build_clib" and "build_ext"
+ # commands.  Thus, it's fun to play with auto-configuration, but it's not
+ # ready for prime-time yet.
+ 
  class config_mxDateTime (config):
  

Index: pil_setup.py
===================================================================
RCS file: /cvsroot/python/distutils/examples/pil_setup.py,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** pil_setup.py	2000/06/29 02:22:02	1.13
--- pil_setup.py	2000/06/30 03:46:28	1.14
***************
*** 58,61 ****
--- 58,68 ----
  
  
+ 
+ # Auto-configuration: this will obsolete the above manual editing soon, but
+ # not yet.  The problem is that there's no way to communicate what the
+ # "config" command finds out to the "build_clib" and "build_ext" commands.
+ # Thus, it's fun to play with auto-configuration, but it's not ready for
+ # prime-time yet.
+ 
  class config_Imaging (config):