[pypy-svn] r64315 - pypy/trunk/pypy/translator/benchmark

niko at codespeak.net niko at codespeak.net
Sat Apr 18 00:01:57 CEST 2009


Author: niko
Date: Sat Apr 18 00:01:56 2009
New Revision: 64315

Modified:
   pypy/trunk/pypy/translator/benchmark/benchmarks.py
Log:
s/pyston/pystone

Modified: pypy/trunk/pypy/translator/benchmark/benchmarks.py
==============================================================================
--- pypy/trunk/pypy/translator/benchmark/benchmarks.py	(original)
+++ pypy/trunk/pypy/translator/benchmark/benchmarks.py	Sat Apr 18 00:01:56 2009
@@ -65,7 +65,7 @@
 def run_pystone(executable='/usr/local/bin/python', n=''):
     from pypy.tool import autopath
     distdir = py.path.local(autopath.pypydir).dirpath()
-    pyston = py.path.local(autopath.libpythondir).join('test', 'pystone.py')
+    pystone = py.path.local(autopath.libpythondir).join('test', 'pystone.py')
     txt = run_cmd('"%s" "%s" %s' % (executable, pystone, n))
     return get_result(txt, PYSTONE_PATTERN)
 



More information about the Pypy-commit mailing list