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: ->
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