[Python-checkins] benchmarks: Mark what serializing tests are not run by Python 3.

brett.cannon python-checkins at python.org
Sat Sep 15 00:12:31 CEST 2012


http://hg.python.org/benchmarks/rev/885dafc93881
changeset:   177:885dafc93881
user:        Brett Cannon <brett at python.org>
date:        Fri Sep 14 13:49:08 2012 -0400
summary:
  Mark what serializing tests are not run by Python 3.

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


diff --git a/perf.py b/perf.py
--- a/perf.py
+++ b/perf.py
@@ -2061,15 +2061,16 @@
                             "bzr_startup", "hg_startup"],
                 "regex": ["regex_v8", "regex_effbot", "regex_compile"],
                 "threading": ["threaded_count", "iterative_count"],
-                "serialize": ["slowpickle", "slowunpickle",
+                "serialize": ["slowpickle", "slowunpickle",  # Not for Python 3
                               "fastpickle", "fastunpickle",
                               "json_dump_v2", "json_load"],
                 "apps": ["2to3", "html5lib", "rietveld", "spambayes"],
                 "calls": ["call_simple", "call_method", "call_method_slots",
                           "call_method_unknown"],
-                "math": ["nbody", "float", "pidigits"],
+                "math": ["float", "nbody", "pidigits"],
                 "template" : ["slowspitfire", "django", "mako_v2"],
-                "logging": ["silent_logging", "simple_logging", "formatted_logging"],
+                "logging": ["silent_logging", "simple_logging",
+                            "formatted_logging"],
                 # Benchmarks natively 2.x- and 3.x-compatible
                 "2n3": ["calls", "chaos", "fannkuch", "fastpickle",
                         "fastunpickle", "go", "json_dump_v2", "json_load",

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


More information about the Python-checkins mailing list