Lost trackback functionality
-
While trying to figure out why I kept getting SyntaxError in line 53 of <stdin>, I must have changed a setting somewhere along the way that disables the trackback functionality.
Now when my code hits an error, the whole thing resets. How can I re-enable the trackback?
-
...and I figured it out. I had a try...finally block that had
machine.reset()
in the finally block. Removing the try...finally restored the trackback output.