From c1c7dabfecebdc5f8536cda80fb4bed7893d256a Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Wed, 19 Dec 2007 10:28:51 +0100 Subject: [PATCH] keyword-only arguments require __Pyx_GetStarArgs() function --- Cython/Compiler/Nodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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): -- 2.26.2