##// END OF EJS Templates
never call Queue.get(block=True, timeout=None)...
never call Queue.get(block=True, timeout=None) get(block=True, timeout=None) is uninterruptible. Replacing this with timeout=1e6 is effectively forever, but respects interrupts.

File last commit:

r2837:012125b0
r4252:53d497b1
Show More
ipython
10 lines | 322 B | text/plain | TextLexer
#!/usr/bin/env python
"""Terminal-based IPython entry point.
Note: this is identical to IPython/frontend/terminal/scripts/ipython for now.
Once 0.11 is closer to release, we will likely need to reorganize the script
entry points."""
from IPython.frontend.terminal.ipapp import launch_new_instance
launch_new_instance()