[Python-checkins] benchmarks: Issue 324934: Skip django_v2 under Python 3.6 due to a use of

brett.cannon python-checkins at python.org
Fri Aug 28 20:53:51 CEST 2015


https://hg.python.org/benchmarks/rev/2f3b3c6c1190
changeset:   221:2f3b3c6c1190
user:        Brett Cannon <brett at python.org>
date:        Fri Aug 28 11:53:36 2015 -0700
summary:
  Issue 324934: Skip django_v2 under Python 3.6 due to a use of
inspect.getargspec.

Thanks to Florin Papa from Intel for reporting the bug.

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
@@ -1446,7 +1446,7 @@
     bm_env = {"PYTHONPATH": django_path}
     return MeasureGeneric(python, options, bm_path, bm_env)
 
- at VersionRange()
+ at VersionRange(None, '3.5')
 def BM_Django_v2(*args, **kwargs):
     return SimpleBenchmark(MeasureDjangoV2, *args, **kwargs)
 

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


More information about the Python-checkins mailing list