プログラムが未処理の例外を発生させるたびに pydev を対話型コンソール モードにしたいのですが、その方法がわかりません。現在の動作では、例外が報告され、プロセスはただちに終了します。
いくつかの検索の後、私はこれを見つけました : http://sourceforge.net/tracker/index.php?func=detail&aid=3029746&group_id=85796&atid=577332
ただし、追加すると
import pydevd
pydevd.set_pm_excepthook()
私のコードでは、例外が発生します。
This function is now replaced by GetGlobalDebugger().setExceptHook and is now controlled by the PyDev UI.')
DeprecationWarning: This function is now replaced by GetGlobalDebugger().setExceptHook and is now controlled by the PyDev UI.
しかし:
GetGlobalDebugger().setExceptHook()
動作していないようです。GetGlobalDebugger() はグローバル名前空間に存在しません。