Source code for koapy.utils.notimplemented
[docs]def notimplemented(func):
func.__isnotimplemented__ = True
return func
[docs]def isnotimplemented(func):
return getattr(func, "__isnotimplemented__", False)
[docs]def isimplemented(func):
return not isnotimplemented(func)