summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_property.py
Commit message (Collapse)AuthorAgeFilesLines
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-2/+2
|
* Fix issue 5890: (property subclass shadows __doc__ string) by insertingR. David Murray2009-05-041-1/+115
| | | | | | | the __doc__ into the subclass instance __dict__. The fix refactors property_copy to call property_init in such a way that the __doc__ logic is re-executed correctly when getter_doc is 1, thus simplifying property_copy.
* Fixed bug #1620: New @spam.getter property syntax modifies the property in ↵Christian Heimes2007-12-141-0/+98
place. I added also the feature that a @prop.getter decorator does not overwrite the doc string of the property if it was given as an argument to property().