[Python-checkins] benchmarks: Fix typo resulting in NameError

zach.ware python-checkins at python.org
Wed Nov 25 00:29:01 EST 2015


https://hg.python.org/benchmarks/rev/ecd113b086e4
changeset:   233:ecd113b086e4
user:        Zachary Ware <zachary.ware at gmail.com>
date:        Thu Nov 12 15:50:29 2015 -0600
summary:
  Fix typo resulting in NameError

files:
  perf.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/perf.py b/perf.py
--- a/perf.py
+++ b/perf.py
@@ -1082,7 +1082,7 @@
             assert exp_data.mem_usage is not None
             return CompareMemoryUsage(base_data.mem_usage, exp_data.mem_usage,
                                       options)
-        return BencharkError("Benchmark does not report memory usage yet")
+        return BenchmarkError("Benchmark does not report memory usage yet")
     if options.diff_instrumentation:
         inst_diff = DiffInstrumentation(base_data.inst_output,
                                         exp_data.inst_output)

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


More information about the Python-checkins mailing list