[pypy-svn] r62819 - pypy/branch/speedup-globals/pypy/translator/benchmark

cfbolz at codespeak.net cfbolz at codespeak.net
Tue Mar 10 17:54:45 CET 2009


Author: cfbolz
Date: Tue Mar 10 17:54:44 2009
New Revision: 62819

Modified:
   pypy/branch/speedup-globals/pypy/translator/benchmark/benchmarks.py
Log:
fix typo


Modified: pypy/branch/speedup-globals/pypy/translator/benchmark/benchmarks.py
==============================================================================
--- pypy/branch/speedup-globals/pypy/translator/benchmark/benchmarks.py	(original)
+++ pypy/branch/speedup-globals/pypy/translator/benchmark/benchmarks.py	Tue Mar 10 17:54:44 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