diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-01-26 21:56:58 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-01-26 21:56:58 (GMT) |
commit | 66012fe889db4ad88326f739f2e7cd7cb693f52a (patch) | |
tree | a825407a23207a5492b619de95e46be19f26bc05 /setup.py | |
parent | 66f98b45cd6f8bd8b796d0244b9e1dcbd17ae018 (diff) | |
download | cpython-66012fe889db4ad88326f739f2e7cd7cb693f52a.zip cpython-66012fe889db4ad88326f739f2e7cd7cb693f52a.tar.gz cpython-66012fe889db4ad88326f739f2e7cd7cb693f52a.tar.bz2 |
Remove unused import of 'string'
Add header comment and __version__
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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 |