Files
galaxy/scripts/check_python_ucs.py
T
James Taylor a50b8007ef Splitting out UCS2 and UCS4 eggs for linux. Run scripts check
waht python is available and use the right directory. Factored
path stuff out of shell scripts into a shared 'setup_paths.sh'.
2007-12-06 01:27:33 +00:00

9 lines
105 B
Python
Executable File

#!/usr/bin/env python2.4
import sys
if sys.maxunicode > 65535:
print "UCS4"
else:
print "UCS2"