Remove unused import of 'string'

Add header comment and __version__
This commit is contained in:
Andrew M. Kuchling 2001-01-26 21:56:58 +00:00
parent 66f98b45cd
commit 66012fe889
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,12 @@
# Autodetecting setup.py script for building the Python extensions
#
# To be fixed:
# Implement --disable-modules setting
#
import sys, os, string, getopt
__version__ = "$Revision$"
import sys, os, getopt
from distutils import sysconfig
from distutils.errors import *
from distutils.core import Extension, setup