How to debug a Python package source code in VS Code correctly?
I am trying to debug a Python code, and I want to make some breakpoints in the source code of a package X.
VS Code Debugger: no hang when stepping manually through problematic code; otherwise, it hangs. What tools does the editor + debugger have to examine?
Editors: please note that this question is specific to the VS Code Python debugger, and the features offered by the VS Code editor.
Debug Python files that have been copied into a different build folder
I have a simplistic PowerShell script-based build process where I copy some Python source files in /src over to a /build folder, along with some data files and assets stored in other external subfolders. I want to run the VS Code Debugger against this build folder (full path: /build/demo/quad/quad.py), but mark my breakpoints against the files in /src (equivalent file found in /src/python/quad.py).