equal
deleted
inserted
replaced
785 # D = dir() |
785 # D = dir() |
786 g = globals() |
786 g = globals() |
787 Dprime = {} |
787 Dprime = {} |
788 from types import StringType |
788 from types import StringType |
789 from string import strip |
789 from string import strip |
790 for (a,b) in list(g.items()): |
790 for a,b in g.items()): |
791 if a[:4]=="test" and type(b) is StringType: |
791 if a[:4]=="test" and type(b) is StringType: |
792 #print 'for', a |
792 #print 'for', a |
793 #print b |
793 #print b |
794 b = strip(b) |
794 b = strip(b) |
795 exec(b+'\n') |
795 exec(b+'\n') |