2b06d1d
1
2
3
4
5
def get_unbound_function(func): if not getattr(func, "__self__", True): return func.__func__ return func