sergio,

I am so sorry, that was a typo.


my usual syntax is

myfunc(my_arg1, my_arg2, my_kw_arg_1="default 1", *args, **kw)

keyword args  func(.....my_kw_arg_10,  ) that are not bound in your
function go to
**kw

positional args beyond what you define in your func signature are
shuffled into
*args

ex     calling  myfunc(my_arg1, my_arg2, my_arg3 ....)  would send
my_arg3 (a positional arg) into postion 0 of *args


hope this helps, and sorry for the typo,

Mike

Reply via email to