python - How to set the pycharm debugger to list the method functions of an object in the variable watch? -
is there anyway view method functions of object in pycharm debugger?
the image shows bunch of properties, useful, not show methods inside object. there way see them?
if type dir(object) in pdb, listed. how turn on visual equivalent in pycharm?
you can use debug console
while stopped @ breakpoint. can inspect things, modify, etc. can dangerous, useful.
some people have complained debugger console not working properly, haven't experienced that. i'm on latest eap (2017.2.?)
class foo: def __init__(self): self.a = 3 def bar(self): self.a = 4 def that(self): return self.a b = foo() print("my breakpoint here.")
Comments
Post a Comment