mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-19 02:21:32 +08:00
EVERYTHING we depend on should eventually be under the galaxy module or packaged in eggs to avoid namespace problems.
11 lines
134 B
Python
11 lines
134 B
Python
import sys
|
|
|
|
try:
|
|
import psyco
|
|
psyco.full()
|
|
except:
|
|
pass
|
|
#print >> sys.stderr, "Psyco not found, continuing without it"
|
|
|
|
|