Using IPython on my linux terminal (Debian), I would like to see the function signature (arguments and docstring) when I press ( after the function name, in a popup.
Notes:
function_name?works.I'm sure that program actually sees the function data, since when I write
pd.DataFrame(col<Tab>it autocompletes withcolumns=, an argument of pd.DataFrame.I already tried
TabandS-Tabwithout success.
qtconsole, under the hood, it calls inspect. Also - after setting%config IPCompleter.use_jedi = FalseI get the list of arguments when pressing tab afterfunction_name(.