[Python-Dev] Extended Function syntax

Greg Ewing greg@cosc.canterbury.ac.nz
Tue, 28 Jan 2003 15:09:14 +1300 (NZDT)


Oren Tirosh <oren-py-d@hishome.net>:

> If the attributes of a property object are made assignable the following 
> code will work:
> 
>   prop = property()
> 
>   def prop.fget(self):
>      ...
> 
>   def prop.fset(self, value):
>      ...

I'm not sure I like the need for the prop = property() part.
It exposes too much of the implementation for my taste.

Greg Ewing, Computer Science Dept, +--------------------------------------+
University of Canterbury,	   | A citizen of NewZealandCorp, a	  |
Christchurch, New Zealand	   | wholly-owned subsidiary of USA Inc.  |
greg@cosc.canterbury.ac.nz	   +--------------------------------------+