Preparing for 0.2.0

svn: r87
This commit is contained in:
Don Allingham
2001-06-04 01:43:11 +00:00
parent b5c3134ef4
commit d34fcd97dd
6 changed files with 840 additions and 811 deletions

View File

@@ -37,20 +37,6 @@ else
trans="path = os.path.join('$basedir', file)"
fi
$PYTHON -c "
import sys, os, string, py_compile
files = '''$*'''
print 'Byte-compiling python modules...'
for file in string.split(files):
$trans
if not os.path.exists(path) or not (len(path) >= 3 and path[-3:] == '.py'):
continue
print file,
sys.stdout.flush()
py_compile.compile(path)
print" || exit $?
# this will fail for python < 1.5, but that doesn't matter ...
$PYTHON -O -c "
import sys, os, string, py_compile