Python doesn't really have keyword arguments (except when it does), only positionals. Thus, a call like foo(a=1) actually passes the value of argument a in its positional slot. The only case where keyword args have an independent existence is when a function has a **excess parameter to contain names not already defined in the parameter list.
Thus, we need some kind of binder process, either converting nameds to positionals or positionals nameds. Of course, this has to interact properly with default values and the like.
Python doesn't really have keyword arguments (except when it does), only positionals. Thus, a call like
foo(a=1)actually passes the value of argumentain its positional slot. The only case where keyword args have an independent existence is when a function has a**excessparameter to contain names not already defined in the parameter list.Thus, we need some kind of binder process, either converting nameds to positionals or positionals nameds. Of course, this has to interact properly with default values and the like.