skbio.util.classonlymethod#
- class skbio.util.classonlymethod(func)#
Just like classmethod, but it can’t be called on an instance.
Special methods
Return an attribute of instance, which is of type owner.
Special methods (inherited)
__eq__Return self==value.
__ge__Return self>=value.
__getstate__Helper for pickle.
__gt__Return self>value.
__hash__Return hash(self).
__le__Return self<=value.
__lt__Return self<value.
__ne__Return self!=value.
__str__Return str(self).
Details