We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c3dac4a + 8d17d09 commit 0504509Copy full SHA for 0504509
1 file changed
wolframclient/serializers/base.py
@@ -139,7 +139,7 @@ def _serialize_external_object(self, o):
139
yield "Type", "PythonFunction"
140
try:
141
# force tuple to avoid calling this method again on `map`.
142
- yield "Arguments", tuple(map(force_text, first(inspect.getfullargspec(o))))
+ yield "Arguments", tuple(map(force_text, first(inspect.getargspec(o))))
143
except TypeError:
144
# this function can fail with TypeError unsupported callable
145
pass
0 commit comments