标签: python
如果我有一个InteractiveInterpreter对象,它通过runsource运行一些代码块,是否有任何方法可以在稍后阶段中断此代码?
InteractiveInterpreter
runsource
我尝试了一些方法,例如使用
raise KeyboardInterrupt
调用,但这不会影响由于早期runsource调用而运行的代码。