From a7f660b9da33aedbea1ca80011ee901934d61757 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sun, 18 May 2008 08:54:06 +0200 Subject: [PATCH] comment fix --- Cython/Compiler/ExprNodes.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -- 2.26.2