Author: Carl Friedrich Bolz <cfb...@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: _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit