【发布时间】:2018-09-09 22:21:45
【问题描述】:
按照官方wiki 中的步骤进行操作后,在使用断点启动或设置断点时不断出现以下错误:
/ptvsd/wrapper.py", line 423, in pydevd_request
os.write(self.pipe_w, s.encode('utf8'))
File "google-cloud-sdk/platform/google_appengine/google/appengine/tools/devappserver2/python/runtime/stubs.py", line 40, in os_error_not_implemented
raise OSError(errno.ENOSYS, 'Function not implemented')
OSError: [Errno 38] Function not implemented
应用程序仍然运行,但断点永远不会命中。似乎 ptvsd 正在尝试使用某些被应用引擎沙盒环境阻止的方法。我在 python virtualenv 中运行 vscode,有什么线索吗?
【问题讨论】:
-
遇到同样的问题?当我启动 vscode 进行 ptvsd 调试时,它有时会调试
标签: python google-app-engine visual-studio-code