[Python-checkins] benchmarks: Drop html5lib and spambayes from the default benchmark collection due

brett.cannon python-checkins at python.org
Fri Oct 16 13:12:52 EDT 2015


https://hg.python.org/benchmarks/rev/22a5da25fa4e
changeset:   223:22a5da25fa4e
user:        Brett Cannon <brett at python.org>
date:        Fri Oct 16 10:12:48 2015 -0700
summary:
  Drop html5lib and spambayes from the default benchmark collection due
to the lack of Python 3 support.

Drop etree from the default benchmark collection as the JSON
benchmarks handle serialization scenarios.

files:
  perf.py |  7 +++----
  1 files changed, 3 insertions(+), 4 deletions(-)


diff --git a/perf.py b/perf.py
--- a/perf.py
+++ b/perf.py
@@ -2245,10 +2245,9 @@
 # If you update the default group, be sure to update the module docstring, too.
 # An "all" group which includes every benchmark perf.py knows about is generated
 # automatically.
-BENCH_GROUPS = {"default": ["2to3", "django_v2", "nbody", "spambayes",
-                            "tornado_http", "fastpickle", "fastunpickle",
-                            "html5lib", "regex_v8", "etree", "json_dump_v2",
-                            "json_load"],
+BENCH_GROUPS = {"default": ["2to3", "django_v2", "nbody", "tornado_http",
+                            "fastpickle", "fastunpickle", "regex_v8",
+                            "json_dump_v2", "json_load"],
                 "startup": ["normal_startup", "startup_nosite",
                             "bzr_startup", "hg_startup"],
                 "regex": ["regex_v8", "regex_effbot", "regex_compile"],

-- 
Repository URL: https://hg.python.org/benchmarks


More information about the Python-checkins mailing list