simple IPython example raises exception on sys.exit()
I'm doing some very simple PySide (and PyQt) tutorials in IPython. One tutorial just creates a window with some sliders to demonstrate slots and signals. When I close the window of the running demo application, I see this error: An exception has occurred, use %tb to see the full traceback. SystemExit: 0 To exit: use 'exit', 'quit', or Ctrl-D. So I run %tb and get this: SystemExit Traceback (most recent call last) /Workspaces/scratch/<ipython-input-1-88966dcfb499> in <module>() 33 34 if __name__ == "__main__": ---> 35 main() /Workspaces/scratch/<ipython-input-1-88966dcfb499> in main() 29 w.show