blob: f1417e6c3f6bfa7cb9dc9e60df15eed42cea79e0 [file] [log] [blame]
Thomas Wouters49fd7fa2006-04-21 10:40:58 +00001#!python
2
3# Setup file for pybench
4#
5# This file has to import all tests to be run; it is executed as
6# Python source file, so you can do all kinds of manipulations here
7# rather than having to edit the tests themselves.
8#
9# Note: Please keep this module compatible to Python 1.5.2.
10#
11# Tests may include features in later Python versions, but these
12# should then be embedded in try-except clauses in this configuration
13# module.
14
15# Defaults
16Number_of_rounds = 10
Thomas Wouters0e3f5912006-08-11 14:57:12 +000017Warp_factor = 10
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000018
19# Import tests
20from Arithmetic import *
21from Calls import *
22from Constructs import *
23from Lookups import *
24from Instances import *
Thomas Wouters477c8d52006-05-27 19:21:47 +000025try:
26 from NewInstances import *
Thomas Wouters0e3f5912006-08-11 14:57:12 +000027except ImportError:
28 pass
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000029from Lists import *
30from Tuples import *
31from Dict import *
32from Exceptions import *
33from Imports import *
34from Strings import *
35from Numbers import *
36try:
37 from Unicode import *
38except (ImportError, SyntaxError):
39 pass