simple IPython example raises exception on sys.exit()
This answer is thanks to Matthias BUSSONNIER from the ipython-users mailing list. 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 Just don’t use sys.exit(0) as you are not exiting python, but still running IPython. Add it … Read more