[Python-checkins] CVS: python/dist/src setup.py,1.18,1.19

A.M. Kuchling akuchling@users.sourceforge.net
Fri, 26 Jan 2001 13:57:00 -0800


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv15637

Modified Files:
	setup.py 
Log Message:
Remove unused import of 'string'
Add header comment and __version__


Index: setup.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/setup.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** setup.py	2001/01/26 18:23:02	1.18
--- setup.py	2001/01/26 21:56:58	1.19
***************
*** 1,6 ****
  # To be fixed:
  #   Implement --disable-modules setting
  
! import sys, os, string, getopt
  from distutils import sysconfig
  from distutils.errors import *
--- 1,11 ----
+ # Autodetecting setup.py script for building the Python extensions
+ #
  # To be fixed:
  #   Implement --disable-modules setting
+ #
  
! __version__ = "$Revision$"
! 
! import sys, os, getopt
  from distutils import sysconfig
  from distutils.errors import *