Answers for "Visual Studio Code doesn't stop on Python breakpoint debug"

0

Visual Studio Code doesn't stop on Python breakpoint debug

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Python: Debug Current File",
            "type": "python",
            "request": "launch",
            "program": "${file}",
            "console": "integratedTerminal",
            "stopOnEntry": true,
            "justMyCode": false
        },
    ]
}
Posted by: Guest on February-06-2021

Code answers related to "Visual Studio Code doesn't stop on Python breakpoint debug"

Python Answers by Framework

Browse Popular Code Answers by Language