0

我跟着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 以便翻译反斜杠?

4

1 回答 1

0

我找到了解决方案。我设置

eclipse_sep = '\\'
python_sep = '/'

在 pydevd_file_utils.py

于 2012-10-26T12:11:38.053 回答