projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c9e64ef
)
keyword-only arguments require __Pyx_GetStarArgs() function
author
Stefan Behnel
<scoder@users.berlios.de>
Wed, 19 Dec 2007 09:28:51 +0000
(10:28 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Wed, 19 Dec 2007 09:28:51 +0000
(10:28 +0100)
Cython/Compiler/Nodes.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/Nodes.py
b/Cython/Compiler/Nodes.py
index 2cf5c38f65fc43cc1022cd683d670f9b560b222e..ba3e74cedfc33e38b0e3a258fb36727744f132e2 100644
(file)
--- 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):