blob: 906a2a94f2591ff09a1401b21fa35ff2a3a6f736 [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
17Warp_factor = 20
18
19# Import tests
20from Arithmetic import *
21from Calls import *
22from Constructs import *
23from Lookups import *
24from Instances import *
25from Lists import *
26from Tuples import *
27from Dict import *
28from Exceptions import *
29from Imports import *
30from Strings import *
31from Numbers import *
32try:
33 from Unicode import *
34except (ImportError, SyntaxError):
35 pass