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")