diff options
Diffstat (limited to 'Tools/pybench/Setup.py')
-rw-r--r-- | Tools/pybench/Setup.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Tools/pybench/Setup.py b/Tools/pybench/Setup.py index 906a2a94f2..1f2f45474f 100644 --- a/Tools/pybench/Setup.py +++ b/Tools/pybench/Setup.py @@ -17,11 +17,16 @@ Number_of_rounds = 10 Warp_factor = 20 # Import tests +#from Empty import * from Arithmetic import * from Calls import * from Constructs import * from Lookups import * from Instances import * +try: + from NewInstances import * +except: + print "Cannot test new-style objects" from Lists import * from Tuples import * from Dict import * |