From 02e16427832bfd665c02b94d270728f89f07991b Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 28 Nov 2008 12:08:02 +0100 Subject: [PATCH] unit test fix --- Cython/Compiler/Visitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cython/Compiler/Visitor.py b/Cython/Compiler/Visitor.py index fd1d516f..cf65c1ae 100644 --- a/Cython/Compiler/Visitor.py +++ b/Cython/Compiler/Visitor.py @@ -60,7 +60,7 @@ class TreeVisitor(BasicVisitor): Example: - >>> class SampleNode: + >>> class SampleNode(object): ... child_attrs = ["head", "body"] ... def __init__(self, value, head=None, body=None): ... self.value = value -- 2.26.2