skbio.util.
classproperty
(func)[source]¶Decorator for class-level properties.
Supports read access only. The property will be read-only within an instance. However, the property can always be redefined on the class, since Python classes are mutable.
func (function) – Method to make a class property.
Decorated method.
property
AttributeError – If the property is set on an instance.
Attributes
|
|
|
|
|
Built-ins
Delete an attribute of instance. |
|
|
|
Return hash(self). |
|
|
Set an attribute of instance to value. |
Methods
Descriptor to change the deleter on a property. |
|
Descriptor to change the getter on a property. |
|
Descriptor to change the setter on a property. |