How do I disable the default printing of source context in ipdb? I'm calling ipdb from within Emacs realgud so I don't need to see the source i the ipdb prompt.
The code
import ipdb
ipdb.set_trace()
can be executed inside the ipdb shell itself but
ipdb.set_trace(context=5)
fails as
*** TypeError: set_trace() got an unexpected keyword argument 'context'
Is this the wrong way?