I need to analyze the methods of the external API and as I usually do this, to write a test script or find an example code, do
ipdb.set_trace()
Where I want to experiment, and then take a look at the currently available variables, objects and their methods. However, when I want to check the documentation, as Ipython suggests
object.method?
I get
*** SyntaxError: invalid syntax (<stdin>, line 1)
If i try
help(object.method)
He gives
*** No help on (object.method)
Does this mean that there is no documentation for the selected method, or am I using the wrong way to call it?
source share