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?

enter image description here

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.") 

enter image description here


Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -