1

I'm using PTVS to debug some code I've written. I'd like to get it to break into the debugger whenever a numpy exception is raised. Currently, it only breaks into the debugger when a standard Python exception is raised; whenever a numpy exception is raised, all I get is a traceback print out.

Te-jé Rodgers
  • 878
  • 1
  • 7
  • 20

1 Answers1

0

You can add your own exception types in the Exceptions dialog (in Debug -> Exceptions), and then check them to have it break on them.

Pavel Minaev
  • 99,783
  • 25
  • 219
  • 289