-
Notifications
You must be signed in to change notification settings - Fork 137
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
Warnings are not shown while evaluating expressions in the debug console #774
Comments
Turning on/off warnings is something that can change the behavior of applications. Some frameworks (such as -- just because you're using the debugger doesn't mean you want the warnings... if you do want warnings, I think you should explicitly enable that when launching the debugger and not having the debugger automatically do that (so, I think this is out of the scope of the debugger). Given that, I'm currently |
Indeed - that's why they are important for debugging purposes. The default in a python interpreter is to show all warnings, while disabling them requires user action - why would a debugger behave differently from the regular interpreter in that regard? BTW, there's no button to turn warnings on or off in the debug panel. |
Sorry, I don't follow here... you mean you usually get warnings but not when debugging? Can you give some code example to reproduce this? |
Thanks for the explanation... the warnings in this case were really silenced as a part of #190. It seems maybe it got to far when it silenced warnings when evaluating user expressions from the debug console. |
Environment data
Steps to reproduce:
Actual behavior
Does not show the warning anywhere while debugging.
Expected behavior
Should show warnings in the terminal pane while debugging, in the same part where
stdout
is written to.The text was updated successfully, but these errors were encountered: