MCPcopy Index your code
hub / github.com/RustPython/RustPython / get_function_args

Function get_function_args

extra_tests/custom_text_test_runner.py:123–127  ·  view source on GitHub ↗
(func_ref)

Source from the content-addressed store, hash-verified

121
122
123def get_function_args(func_ref):
124 try:
125 return [p for p in inspect.getfullargspec(func_ref).args if p != "self"]
126 except:
127 return None
128
129
130def store_class_fields(class_ref, args_passed):

Callers 1

store_class_fieldsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected