You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.
Start debugging a simple program print("Hello world")
Debugger will display an error Unable to open <frozen importlib._bootstrap>
Problem:
There is some error in PTVSD and the debugger is capturing this error and attempting to break into it (after all, we have enabled this feature Raised Exceptions.
However this should not happen, until the user code has started.
I.e. we shouldn't be enabling exceptions filters/breakpoints until just before the user code is about to be executed.
This is one of the two items in #194. Basically, this is user code, specifically the implicit import of builtins at the very beginning of it. But we shouldn't be breaking there because the exception itself is in standard library code.
#194 is in Public Preview, so that's the right milestone (or we can close this one as a dupe).
Raised Exceptions
print("Hello world")
Unable to open <frozen importlib._bootstrap>
Problem:
Raised Exceptions
.I.e. we shouldn't be enabling exceptions filters/breakpoints until just before the user code is about to be executed.
#85
The text was updated successfully, but these errors were encountered: