- Removed attempt to import psyco module

git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@272 014f5005-505e-4b48-8d0a-63407b615a7c
This commit is contained in:
LtWorf 2011-03-03 17:45:18 +00:00
parent 1e51f9784f
commit 0d83587cfc
2 changed files with 0 additions and 9 deletions

View File

@ -109,4 +109,3 @@ class rdate (object):
def __sub__ (self,other):
return (self.intdate-other.intdate).days

View File

@ -57,14 +57,6 @@ def printhelp(code=0):
if __name__ == "__main__":
x11=True #Will try to use the x11 interface
#Try to run the psyco optimizer
try:
import psyco
psyco.full()
except:
pass
#Getting command line
try:
switches,files=getopt.getopt(sys.argv[1:],"vhqr")