param arguments that are being forgotten by the user are now added (no strange behaviour anymore)

This commit is contained in:
David Halter
2012-11-30 18:00:48 +01:00
parent 447ae46b2f
commit b571964939
3 changed files with 17 additions and 4 deletions

View File

@@ -82,6 +82,13 @@ def func(a_param):
a_param.
from os import path
# should not return a function, because `a` is a function above
def f(b, a): return a
#? []
f(b=3)
# -----------------
# class
# -----------------