From: Andrew M. Kuchling Date: Fri, 26 Jan 2001 21:56:58 +0000 (+0000) Subject: Remove unused import of 'string' X-Git-Tag: v2.1a2~149 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=66012fe889db4ad88326f739f2e7cd7cb693f52a;p=thirdparty%2FPython%2Fcpython.git Remove unused import of 'string' Add header comment and __version__ --- diff --git a/setup.py b/setup.py index 371036cb10a2..0e421c581949 100644 --- a/setup.py +++ b/setup.py @@ -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