From: Stefan Behnel Date: Sat, 25 Aug 2007 17:01:14 +0000 (+0200) Subject: fix for property functions X-Git-Tag: 0.9.6.14~29^2~154 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c91215d600de319996482bb2868bdc803065f416;p=cython.git fix for property functions --- diff --git a/Cython/Compiler/Symtab.py b/Cython/Compiler/Symtab.py index 592b5698..b27e294a 100644 --- a/Cython/Compiler/Symtab.py +++ b/Cython/Compiler/Symtab.py @@ -1177,6 +1177,7 @@ class PropertyScope(Scope): if signature: entry = self.declare(name, name, py_object_type, pos) entry.signature = signature + entry.is_special = 1 return entry else: error(pos, "Only __get__, __set__ and __del__ methods allowed "