¡@

Home 

python Programming Glossary: self.fdel

Subclassing Python's `property`

http://stackoverflow.com/questions/12405087/subclassing-pythons-property

fset None fdel None doc None self.fget fget self.fset fset self.fdel fdel if doc is None and fget is not None doc fget.__doc__ self.__doc__.. attribute self.fset obj value def __delete__ self obj if self.fdel is None raise AttributeError can't delete attribute self.fdel.. is None raise AttributeError can't delete attribute self.fdel obj def getter self fget return type self fget self.fset self.fdel..

Python, how does decorator @property work?

http://stackoverflow.com/questions/17330160/python-how-does-decorator-property-work

fset None fdel None doc None self.fget fget self.fset fset self.fdel fdel if doc is None and fget is not None doc fget.__doc__ self.__doc__.. attribute self.fset obj value def __delete__ self obj if self.fdel is None raise AttributeError can't delete attribute self.fdel.. is None raise AttributeError can't delete attribute self.fdel obj def getter self fget return type self fget self.fset self.fdel..