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~129^2~16 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=c790d2deefc7e047b45bc35a6e86cf54b033524d;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 "