pgiri / dispy

Distributed and Parallel Computing Framework with / for Python
https://dispy.org
Other
260 stars 55 forks source link

Update __init__.py due to deprecated inspect.getargspec() #222

Closed kevinanewman closed 10 months ago

kevinanewman commented 11 months ago

inspect.getargspec() is gone in Python 3.11+, the code modification here should produce the same effect but using inspect.getfullargspec() which returns a slightly different named tuple.

Tested on Python 3.11.6, no other updates required, at least for my application.