vscode python debugger tips
python debugger 의 option 이 많이 추가됐다. 그래서 정리가 필요해서 글을 적는다.- Implement `justMyCode` fine grained control feature in debugger · Issue #2073 · microsoft/ptvsd · GitHub
- Implement `justMyCode` fine grained control feature in debugger · Issue #2073 · microsoft/ptvsd · GitHub
libray 까지 code navigation
"python.analysis.cacheFolderPath": ".vscode", "python.analysis.memory.keepLibraryLocalVariables": false, "python.venvPath": "c:\\\\a\\\\envs", "python.analysis.cachingLevel": "Library", "python.analysis.memory.keepLibraryAst": true,
library 까지 debugger 로 동작하도록 하기
아래처럼 settings.json 에 debugJustMyCode 를 false 로 두는 것으로는 debugging 이 동작하지 않는다. launch.json 에justMyCode
를 넣어줘야 된다.이렇게 해주지 않으면
step into
를 해도 library code 로 debugger 가 옮겨가지 않는다.// settings.json
// "python.dataScience.debugJustMyCode": false,
// launch.json
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false,
}
]
}
- Implement `justMyCode` fine grained control feature in debugger · Issue #2073 · microsoft/ptvsd · GitHub: justMyCode 에 대한 글
- Implement `justMyCode` fine grained control feature in debugger · Issue #2073 · microsoft/ptvsd · GitHub: launch.json 에 대한 이야기
댓글 없음:
댓글 쓰기