Closed
Description
I have set up .vscode/launch.json as this:
Furthermore I have also set up settings.json as this:
{
"jupyter.debugJustMyCode": false,
"debug.disassemblyView.showSourceCode": true,
"debugpy.debugJustMyCode": false
}
Environment data
- debugpy version: debugpy-1.8.12
- OS and version: PtvsdWheels37 - experiment breaks the debugger under windows debugpy#140~20.04.1-Ubuntu)
- Python version (& distribution if applicable, e.g. Anaconda): 3.11.5
- Using VS Code or Visual Studio: VSCODE
Actual behavior
Frame skipped from debugging during step-in.
Note: may have been skipped because of "justMyCode" option (default == true). Try setting "justMyCode": false in the debug configuration (e.g., launch.json).
Expected behavior
I should be able to step in library code.
def main():
import debugpy
debugpy.listen(("localhost", 55678))
# LibraryCode you want to step in