How to set the pycharm debugger to list the method functions of an object in the variable watch?

Viewed 992

Is there anyway to view the method functions of an object in the pycharm debugger?

The image shows a bunch of properties, which is useful, but it does not show any methods inside the object. Is there a way to see them?

If I type dir(object) in pdb, everything is listed. How do I turn on the visual equivalent in pycharm?

enter image description here

1 Answers
Related