#!/usr/bin/python

"""IPython -- An enhanced Interactive Python

This is just the startup wrapper script, kept deliberately to a minimum."""

import IPython.Shell, sys

# The third argument in the call to IPythonShell() is a debugging flag. If it
# is set to 0 and IPython is silently crashing without showing any tracebacks,
# set it back to 1.

debug = 0   # Keep set to 0 in production releases.

IPython.Shell.IPythonShell(sys.argv,None,debug).mainloop()
