如何禁用 ipdb 中源上下文的默认打印?我从 Emacs realgud 中调用 ipdb,所以我不需要在 ipdb 提示符下查看源代码。
编码
import ipdb
ipdb.set_trace()
可以在 ipdb shell 本身内部执行,但是
ipdb.set_trace(context=5)
失败为
*** TypeError: set_trace() got an unexpected keyword argument 'context'
这是错误的方式吗?