Re: property __doc__

2006-06-30 Thread Robert Kern
David Isaac wrote: > To access the doc string of a property, > I have to use the class not an instance. > Why? Because getting the attribute from the instance gets the calculated value (the value returned from the getter function), not the actual property object. -- Robert Kern "I have come to

property __doc__

2006-06-30 Thread David Isaac
To access the doc string of a property, I have to use the class not an instance. Why? Thanks, Alan Isaac -- http://mail.python.org/mailman/listinfo/python-list