-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Debugger does not stop for uncaught Python exceptions raised from native code #155
Comments
From @zneak on August 3, 2017 0:15 Looks like the debugging support comes from IPython. Let me know if I should see help there instead. |
@zneak I'll look into why it isn't breaking when |
Test on PTVS Tools (Visual Studio) and I can see the same behavior. |
@zneak Please ensure you have the latest version of the python extension and
Do let us know how this goes. Please ensure the |
This issue has been automatically closed because there has been no response to our request for more information from the original author. With only the information that is currently in the issue, we don't have enough information to take action. Please reach out if you have or find the answers we need so that we can investigate further. |
From @zneak on August 3, 2017 0:9
Environment data
VS Code version: Version 1.14.2 (1.14.2)
Python Extension version: 0.6.9
Python Version: Python 2.7.10
OS and version: macOS Sierra 10.12.4
Actual behavior
The debugger does not stop when an uncaught exception is raised from native code, even if the breakpoint on "uncaught exceptions" is set.
Expected behavior
The debugger should probably stop wherever looks the most appropriate (probably on the most recent Python stack frame).
Steps to reproduce:
raise KeyError("oopsie")
Logs
Output from
Python
output panel: (traceback ...)Output from
Console window
(Help->Developer Tools menu): (empty)Copied from original issue: DonJayamanne/pythonVSCode#1137
The text was updated successfully, but these errors were encountered: