By default debugging of library functions is turned off. If this is necessary, please proceed as follows:
launch.json
"debugOptions"
(see below) of the relevant debug configuration to include the option "DebugStdLib"
as follows: "configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config.python.pythonPath}",
"program": "${file}",
"cwd": "null",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
]
},
By default debugging of library functions is turned off. If this is necessary, please proceed as follows:
launch.json
"debugOptions"
(see below) of the relevant debug configuration to include the option "DebugStdLib"
as follows: "configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"pythonPath": "${config.python.pythonPath}",
"program": "${file}",
"cwd": "null",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput"
]
},