Python Forum

Full Version: Paramter lists when shift+tab doesn't work
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Say I have a Python function, func(), which I can't get parameters for. The functionality works; that is, I can apply func(start = 5), to get a result, but I have no idea what all the parameters are, and shift+tab does not work - it only returns *args, *kwargs (there is no docstring available).
How would you go about getting a parameter list so that you could use the function fully? Does Python have any tool/site/place besides shift+tab to see parameters on a function.
Thanks!

By the way, shift+tab works fine elsewhere - just not with this function.