Author: Armin Rigo <[email protected]>
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
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to