[pypy-commit] pypy virtual-arguments: fix

cfbolz noreply at buildbot.pypy.org
Mon Apr 23 11:54:30 CEST 2012


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: virtual-arguments
Changeset: r54658:c095078e5892
Date: 2012-04-22 11:54 +0200
http://bitbucket.org/pypy/pypy/changeset/c095078e5892/

Log:	fix

diff --git a/pypy/interpreter/argument.py b/pypy/interpreter/argument.py
--- a/pypy/interpreter/argument.py
+++ b/pypy/interpreter/argument.py
@@ -451,8 +451,8 @@
         i += 1
 
 @jit.look_inside_iff(
-    lambda signature, blindargs, input_argcount, keywords,
-           scope_w, kwds_mapping, jiton: jiton)
+    lambda signature, blindargs, input_argcount,
+           keywords, kwds_mapping, jiton: jiton)
 def _match_keywords(signature, blindargs, input_argcount,
                     keywords, kwds_mapping, _):
     # letting JIT unroll the loop is *only* safe if the callsite didn't


More information about the pypy-commit mailing list