[pypy-commit] pypy virtual-arguments: oops

cfbolz noreply at buildbot.pypy.org
Mon Apr 16 11:46:26 CEST 2012


Author: Carl Friedrich Bolz <cfbolz at gmx.de>
Branch: virtual-arguments
Changeset: r54389:a37af8c02561
Date: 2012-04-14 10:34 +0200
http://bitbucket.org/pypy/pypy/changeset/a37af8c02561/

Log:	oops

diff --git a/pypy/interpreter/argument.py b/pypy/interpreter/argument.py
--- a/pypy/interpreter/argument.py
+++ b/pypy/interpreter/argument.py
@@ -478,7 +478,7 @@
 @jit.look_inside_iff(lambda space, existingkeywords, keywords, keywords_w:
         jit.isconstant(len(keywords) and
         jit.isconstant(existingkeywords)))
-def _check_not_duplicate_kwargs(space, existingkeywords, keywords_w):
+def _check_not_duplicate_kwargs(space, existingkeywords, keywords, keywords_w):
     # looks quadratic, but the JIT should remove all of it nicely.
     # Also, all the lists should be small
     for key in keywords:


More information about the pypy-commit mailing list