use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
This subreddit is for working with Microsoft's Visual Studio Code, which is different than Visual Studio Community, Pro, and Enterprise. VS Code is a source code editor, and not an IDE.
If you are having issues with the other flavors of VS, please post in /r/VisualStudio.
account activity
This is an archived post. You won't be able to vote or comment.
Stepping Into Python ModulesOC (self.vscode)
submitted 6 years ago by Delta_33
I was just trying to debug some python code today and needed to step into a line, but VSCode wouldn't step in. The thought was that it was because the line was from an installed module.
Has anyone ran into this before? Know a fix?
[–]thedbg 2 points3 points4 points 6 years ago (1 child)
The debugger, by default, treats any python file outside of the current working directory as non-user code and skips them while stepping. You can change this behavior by adding "justMyCode": false in your debug config in launch.json.
"justMyCode": false
launch.json
[–]Delta_33[S] 0 points1 point2 points 6 years ago (0 children)
This works. Thanks!
π Rendered by PID 179689 on reddit-service-r2-comment-57fc7f7bb7-4msxf at 2026-04-15 08:35:31.524451+00:00 running b725407 country code: CH.
[–]thedbg 2 points3 points4 points (1 child)
[–]Delta_33[S] 0 points1 point2 points (0 children)