From 58ead6dddb17de1b9c0199e57ac70ea8643b958c Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Mon, 13 Dec 2010 22:11:03 +0100 Subject: [PATCH] comment --- Cython/Compiler/Nodes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)) -- 2.26.2