From c91215d600de319996482bb2868bdc803065f416 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 25 Aug 2007 19:01:14 +0200 Subject: [PATCH] fix for property functions --- Cython/Compiler/Symtab.py | 1 + 1 file changed, 1 insertion(+) 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 " -- 2.26.2