Merge pull request #242 from rhr/master

fix for using the shell with IPython >= 1.0
This commit is contained in:
mdipierro
2013-10-06 19:37:56 -07:00

View File

@@ -288,7 +288,10 @@ def run(
else:
try:
import IPython
if IPython.__version__ >= '0.11':
if IPython.__version__ >= '1.0':
IPython.start_ipython(user_ns=_env)
return
elif IPython.__version__ >= '0.11':
from IPython.frontend.terminal.embed import InteractiveShellEmbed
shell = InteractiveShellEmbed(user_ns=_env)
shell()