From: Stefan Behnel Date: Mon, 13 Dec 2010 21:11:03 +0000 (+0100) Subject: comment X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=58ead6dddb17de1b9c0199e57ac70ea8643b958c;p=cython.git comment --- diff --git a/Cython/Compiler/Nodes.py b/Cython/Compiler/Nodes.py index ce96a3ba..54324594 100644 --- a/Cython/Compiler/Nodes.py +++ b/Cython/Compiler/Nodes.py @@ -2430,8 +2430,8 @@ class DefNode(FuncDefNode): code.putln("0};") def generate_argument_parsing_code(self, env, code): - # Generate PyArg_ParseTuple call for generic - # arguments, if any. + # Generate fast equivalent of PyArg_ParseTuple call for + # generic arguments, if any, including args/kwargs if self.entry.signature.has_dummy_arg and not self.self_in_stararg: # get rid of unused argument warning code.putln("%s = %s;" % (Naming.self_cname, Naming.self_cname))