projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5a2a7b
)
fix for property functions
author
Stefan Behnel
<scoder@users.berlios.de>
Sat, 25 Aug 2007 17:01:14 +0000
(19:01 +0200)
committer
Stefan Behnel
<scoder@users.berlios.de>
Sat, 25 Aug 2007 17:01:14 +0000
(19:01 +0200)
Cython/Compiler/Symtab.py
patch
|
blob
|
history
diff --git
a/Cython/Compiler/Symtab.py
b/Cython/Compiler/Symtab.py
index 592b56982c6b82d589046210f6457cfdb01e8d33..b27e294af5fe5cd94edcfa6fc076c3f9eea52fd1 100644
(file)
--- 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 "