0

I started using Wing IDE and it's great. I'm building a wxPython app, and I noticed that Wing IDE catches exceptions that are usually caught by wxPython and not really raised. This is usually useful, but I would like to disable this behavior occasionally. How do I do that?

Ram Rachum
  • 84,019
  • 84
  • 236
  • 374

1 Answers1

0

There is a Ignore this exception location check box in the window where the exception is reported in wing, or you could explicitly silence that specific exception in you code with a try except block.

Toni Ruža
  • 7,462
  • 2
  • 28
  • 31