skip to Main Content

Visual Studio Code – Debugger not allowing me to step into subsequent functions from entrypoint .py file I specified (VS Code)

I am trying to debug my python program with the use of the below launch.json configuration. { "name": "pysystemtrade", "type": "python", "request": "launch", "program": "/Users/darshildholakia/Documents/pysystemtrade/examples/introduction/prebakedsystems.py", "justMyCode": false, "subProcess": true, }, Here, I've specified path/to/prebakedsystems.py as the entrypoint as that is…

VIEW QUESTION
Back To Top
Search