From: Stefan Behnel Date: Wed, 19 Dec 2007 09:28:51 +0000 (+0100) Subject: keyword-only arguments require __Pyx_GetStarArgs() function X-Git-Tag: 0.9.6.14~29^2~62^2~24 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c1c7dabfecebdc5f8536cda80fb4bed7893d256a;p=cython.git keyword-only arguments require __Pyx_GetStarArgs() function --- diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py index 2cf5c38f..ba3e74ce 100644 --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -960,7 +960,7 @@ class DefNode(FuncDefNode): self.declare_pyfunction(env) self.analyse_signature(env) self.return_type = self.entry.signature.return_type() - if self.star_arg or self.starstar_arg: + if self.star_arg or self.starstar_arg or self.num_kwonly_args > 0: env.use_utility_code(get_starargs_utility_code) def analyse_signature(self, env):