From c6dc5cf9e77a5f2480598a3072ed88ba53065c93 Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Tue, 13 Sep 2016 11:41:41 +0200 Subject: Remove pybench microbenchmark Issue #15369. Please use the new "performance" benchmark suite. --- Tools/pybench/Setup.py | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 Tools/pybench/Setup.py (limited to 'Tools/pybench/Setup.py') diff --git a/Tools/pybench/Setup.py b/Tools/pybench/Setup.py deleted file mode 100644 index 21e654afba..0000000000 --- a/Tools/pybench/Setup.py +++ /dev/null @@ -1,43 +0,0 @@ -#!python - -# Setup file for pybench -# -# This file has to import all tests to be run; it is executed as -# Python source file, so you can do all kinds of manipulations here -# rather than having to edit the tests themselves. -# -# Note: Please keep this module compatible to Python 1.5.2. -# -# Tests may include features in later Python versions, but these -# should then be embedded in try-except clauses in this configuration -# module. - -# Defaults -Number_of_rounds = 10 -Warp_factor = 10 - -# Import tests -from Arithmetic import * -from Calls import * -from Constructs import * -from Lookups import * -from Instances import * -try: - from NewInstances import * -except ImportError: - pass -from Lists import * -from Tuples import * -from Dict import * -from Exceptions import * -try: - from With import * -except SyntaxError: - pass -from Imports import * -from Strings import * -from Numbers import * -try: - from Unicode import * -except (ImportError, SyntaxError): - pass -- cgit v1.2.1