Files
galaxy/lib/psyco_full.py
T
James Taylor 2c4c20436e Cleaning up modules. Still a few stragglers that can't be easily eggified.
EVERYTHING we depend on should eventually be under the galaxy module or
packaged in eggs to avoid namespace problems.
2006-11-15 18:27:21 +00:00

11 lines
134 B
Python

import sys
try:
import psyco
psyco.full()
except:
pass
#print >> sys.stderr, "Psyco not found, continuing without it"