From: Stefan Behnel Date: Sun, 18 May 2008 06:54:06 +0000 (+0200) Subject: comment fix X-Git-Tag: 0.9.8rc1~11^2~10^2~15^2~35 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a7f660b9da33aedbea1ca80011ee901934d61757;p=cython.git comment fix --- diff --git a/Cython/Compiler/ExprNodes.py b/Cython/Compiler/ExprNodes.py index cb389b07..e8354575 100644 --- a/Cython/Compiler/ExprNodes.py +++ b/Cython/Compiler/ExprNodes.py @@ -2412,12 +2412,14 @@ class DictItemNode(ExprNode): self.key.generate_disposal_code(code) self.value.generate_disposal_code(code) + class ClassNode(ExprNode): # Helper class used in the implementation of Python # class definitions. Constructs a class object given # a name, tuple of bases and class dictionary. # - # name ExprNode Name of the class + # name EncodedString Name of the class + # cname string Class name as a Python string # bases ExprNode Base class tuple # dict ExprNode Class dict (not owned by this node) # doc ExprNode or None Doc string