Commit 1d0b3e33 authored by Stefan Behnel's avatar Stefan Behnel

cleanup

parent 940883b0
......@@ -2121,11 +2121,11 @@ class DefNode(FuncDefNode):
code.putln('}')
# now fill up the required arguments with values from the kw dict
last_required_arg = -1
for i, arg in enumerate(all_args):
if not arg.default:
last_required_arg = i
if last_required_arg >= 0:
if self.num_required_args:
last_required_arg = -1
for i, arg in enumerate(all_args):
if not arg.default:
last_required_arg = i
code.putln('switch (PyTuple_GET_SIZE(%s)) {' % Naming.args_cname)
for i, arg in enumerate(all_args[:last_required_arg+1]):
if i <= max_positional_args:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment