properties
File Purpose: tools for simple properties
Functions
|
returns a property which is an alias to attribute_name. |
|
returns a property which is an alias to obj.child_name.attribute_name. |
|
sets cls.new_attr to be an alias for cls.attr. |
|
returns a property which is an alias to obj.dict_attribute_name[key]. |
|
returns a property which is an alias to the result of calling attribute_name. |
|
return a property which gives a dictionary, and gives key_aliases a chance to edit the dict. |
|
return property which returns tuple(element.attr for element in self). |
|
return a property with a setter and getter method for internal_name. |
|
return a property which refers to a tuple of internal names. |
|
defines a property which behaves like the value it contains, but is actually a weakref. |