From 0d83587cfcff1c2200ad27995c2607ab2282e47f Mon Sep 17 00:00:00 2001 From: LtWorf Date: Thu, 3 Mar 2011 17:45:18 +0000 Subject: [PATCH] - Removed attempt to import psyco module git-svn-id: http://galileo.dmi.unict.it/svn/relational/trunk@272 014f5005-505e-4b48-8d0a-63407b615a7c --- relational/rtypes.py | 1 - relational_gui.py | 8 -------- 2 files changed, 9 deletions(-) diff --git a/relational/rtypes.py b/relational/rtypes.py index 9d2ff8d..f1cd07e 100644 --- a/relational/rtypes.py +++ b/relational/rtypes.py @@ -109,4 +109,3 @@ class rdate (object): def __sub__ (self,other): return (self.intdate-other.intdate).days - \ No newline at end of file diff --git a/relational_gui.py b/relational_gui.py index 6a66589..810bdb3 100755 --- a/relational_gui.py +++ b/relational_gui.py @@ -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")