forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Debug Library Functions
Don Jayamanne edited this page Sep 12, 2016
·
1 revision
By default debugging of library functions is turned off. If this is necessary, please proceed as follows:
- Open the debug configuration file
launch.json - Change the
"debugOptions"(see below) of the relevant debug configuration to include the option"DebugStdLib"as follows:
"configurations": [
{
"name": "Python",
"type": "python",
"request": "launch",
"stopOnEntry": true,
"program": "${file}",
"debugOptions": [
"WaitOnAbnormalExit",
"WaitOnNormalExit",
"RedirectOutput",
"DebugStdLib"
]
},