mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-07 19:46:06 +00: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
|