Removed REVISION, makes no sense.

Import and use python psyco library to speed up if it's installed: it's optional.
This commit is contained in:
Bernardo Damele
2008-12-03 17:32:16 +00:00
parent e3ddbe751f
commit 0f07e33e1a
3 changed files with 8 additions and 4 deletions

View File

@@ -29,6 +29,13 @@ import sys
import time
import traceback
try:
import psyco
psyco.full()
psyco.profile()
except ImportError, _:
pass
from lib.controller.controller import start
from lib.core.common import banner
from lib.core.common import setPaths