Is it possible to start an interactive Python shell inside a Python program?
I want to use such an interactive Python shell (which is running inside my prog
In ipython 0.13+ you need to do this:
from IPython import embed embed()