]> git.proxmox.com Git - mirror_edk2.git/blame - AppPkg/Applications/Python/Python-2.7.2/Tools/pybench/Setup.py
EmbeddedPkg: Extend NvVarStoreFormattedLib LIBRARY_CLASS
[mirror_edk2.git] / AppPkg / Applications / Python / Python-2.7.2 / Tools / pybench / Setup.py
CommitLineData
4710c53d 1#!/usr/bin/env python\r
2\r
3# Setup file for pybench\r
4#\r
5# This file has to import all tests to be run; it is executed as\r
6# Python source file, so you can do all kinds of manipulations here\r
7# rather than having to edit the tests themselves.\r
8#\r
9# Note: Please keep this module compatible to Python 1.5.2.\r
10#\r
11# Tests may include features in later Python versions, but these\r
12# should then be embedded in try-except clauses in this configuration\r
13# module.\r
14\r
15# Defaults\r
16Number_of_rounds = 10\r
17Warp_factor = 10\r
18\r
19# Import tests\r
20from Arithmetic import *\r
21from Calls import *\r
22from Constructs import *\r
23from Lookups import *\r
24from Instances import *\r
25try:\r
26 from NewInstances import *\r
27except ImportError:\r
28 pass\r
29from Lists import *\r
30from Tuples import *\r
31from Dict import *\r
32from Exceptions import *\r
33try:\r
34 from With import *\r
35except SyntaxError:\r
36 pass\r
37from Imports import *\r
38from Strings import *\r
39from Numbers import *\r
40try:\r
41 from Unicode import *\r
42except (ImportError, SyntaxError):\r
43 pass\r