I want to write a function foo(x, y, z, many_more), which I could call as foo(1, 2, 3, 5) or foo(1, 2, 3, many_more=5), but I don't want to have to supply a default value for many_more in my function's definition. I just want to have the option of not remembering the positions of x...many_more without required having default values for them.
Is that currently possible? Thanks...
