我跟着http://pydev.org/manual_adv_remote_debugger.html并配置了类似这样的内容
PATHS_FROM_ECLIPSE_TO_PYTHON = [('W:',
r'/path/to/app'),
]
翻译有效,但有一个小问题:反斜杠未翻译。
我收到以下消息:
pydev debugger: warning: trying to add breakpoint to file that does not exist:
/path/to/app\subpath\foo\bar.py (will have no effect)
如何配置pydevd_file.utils.py以便反斜杠得到翻译?
答案 0 :(得分:0)
我找到了解决方案。 我设置了
eclipse_sep = '\\'
python_sep = '/'
在pydevd_file_utils.py
中