From: Stefan Behnel Date: Sat, 5 Dec 2009 22:35:44 +0000 (+0100) Subject: comment X-Git-Tag: 0.12.1~81 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b6804cab5d97f1342f1233d258a8ee08c0a3f545;p=cython.git comment --- diff --git a/Cython/Compiler/TypeSlots.py b/Cython/Compiler/TypeSlots.py index d23559a6..1399fcf3 100644 --- a/Cython/Compiler/TypeSlots.py +++ b/Cython/Compiler/TypeSlots.py @@ -83,6 +83,7 @@ class Signature(object): return len(self.fixed_arg_format) def is_self_arg(self, i): + # argument is 'self' for methods or 'class' for classmethods return self.fixed_arg_format[i] == 'T' def fixed_arg_type(self, i):