[pypy-commit] pypy py3k: translation fix

arigo pypy.commits at gmail.com
Sat Sep 24 03:46:00 EDT 2016


Author: Armin Rigo <arigo at tunes.org>
Branch: py3k
Changeset: r87356:c9d2807306dc
Date: 2016-09-24 09:45 +0200
http://bitbucket.org/pypy/pypy/changeset/c9d2807306dc/

Log:	translation fix

diff --git a/pypy/interpreter/argument.py b/pypy/interpreter/argument.py
--- a/pypy/interpreter/argument.py
+++ b/pypy/interpreter/argument.py
@@ -252,6 +252,7 @@
         missing_positional = []
         missing_kwonly = []
         more_filling = (input_argcount < co_argcount + co_kwonlyargcount)
+        def_first = 0
         if more_filling:
             def_first = co_argcount - (0 if defaults_w is None else len(defaults_w))
             j = 0


More information about the pypy-commit mailing list