mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-20 12:05:48 -04:00
16 lines
337 B
Python
16 lines
337 B
Python
import inspect
|
|
|
|
def requires_self(func):
|
|
func_argc = len(inspect.getargspec(func).args)
|
|
if func_argc == 0 or (
|
|
getattr(
|
|
func,
|
|
'im_self',
|
|
None) is not None) or (
|
|
hasattr(
|
|
func,
|
|
'__self__')):
|
|
return False
|
|
else:
|
|
return True
|