From: Robert Bradshaw Date: Thu, 15 Oct 2009 19:47:38 +0000 (-0700) Subject: Another blacklisted autotestdict method. X-Git-Tag: 0.13.beta0~2^2~121^2~40 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=70153f33ff349a58f363544d7b72fd18a085e02c;p=cython.git Another blacklisted autotestdict method. --- diff --git a/Cython/Compiler/AnalysedTreeTransforms.py b/Cython/Compiler/AnalysedTreeTransforms.py index bf57cf16..89992500 100644 --- a/Cython/Compiler/AnalysedTreeTransforms.py +++ b/Cython/Compiler/AnalysedTreeTransforms.py @@ -10,7 +10,7 @@ import Naming class AutoTestDictTransform(ScopeTrackingTransform): # Handles autotestdict directive - blacklist = ['__cinit__', '__dealloc__'] + blacklist = ['__cinit__', '__dealloc__', '__richcmp__'] def visit_ModuleNode(self, node): self.scope_type = 'module'