Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python 2.7 getfullargspec equivalent

Can some one please point me to the right direction? I am trying to identify the equivalent of getfullargspec available in python 3 inspect module but without success for now.

like image 451
Mihai H Avatar asked Jun 07 '26 01:06

Mihai H


1 Answers

You need getargspec. It is closest to getfullargspec

like image 196
micgeronimo Avatar answered Jun 08 '26 15:06

micgeronimo