import pandas as pd
data = pd.read_csv(some_data)
I put a breakpoint in the second line of this code and Visual Studio Code stops at this breakpoint. But when I try to step into the "read_csv" function vscode apparently performs a "step over". I also tried setting a breakpoint inside the "read_csv" function but with the same result.
So how do I step into the mentioned function?
2 Answers 2
As of the April 2019 update debugStdLib changed to
"justMyCode": false
https://code.visualstudio.com/docs/python/debugging#_justmycode
Comments
To step into third-party code, set "debugOptions": ["DebugStdLib"] in your launch.json configuration.
1 Comment
"debugStdLib": true but thanks for pointing me in the right direction.Explore related questions
See similar questions with these tags.
some_data? Also, I assume this is Python 3?