We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b15503 commit 6549bc5Copy full SHA for 6549bc5
src/xsref/_reference/_framework.py
@@ -1,4 +1,5 @@
1
import functools
2
+import inspect
3
import math
4
import numpy as np
5
import scipy
@@ -226,5 +227,6 @@ def wrapper(*args, timeout=self.default_timeout):
226
227
wrapper.__annotations__ = typing.get_type_hints(func)
228
setattr(wrapper, "_scipy_func", self.scipy_func)
229
setattr(wrapper, "_mp", func)
230
+ setattr(wrapper, "_arg_names", inspect.getfullargspec(func).args)
231
setattr(wrapper, "__xsref", None)
232
return wrapper
0 commit comments