[issue33044] pdb from base class, get inside a method of derived class

2018-03-16 Thread Terry J. Reedy
Terry J. Reedy added the comment: bugs.python.org is for issues about patching the Python docs or the CPython implementation, for future releases. Questions about using python/cpython should go to Q&A forums, such a python-list or Stackoverflow. -- nosy: +terry.reedy resolution: ->

[issue33044] pdb from base class, get inside a method of derived class

2018-03-10 Thread Ishan Srivastava
New submission from Ishan Srivastava : I need to use `pdb.set_trace()` in the base class. It has a method: ``` def run(self, *args, **kwargs): raise NotImplementedError ``` Since this base class is derived by many subclasses I don't know before hand which class' `run()` method I need to get