##// END OF EJS Templates
aliases match flag pattern ('-' as wordsep, not '_')...
aliases match flag pattern ('-' as wordsep, not '_') aliases are now: --log-level=foo rather than --log_level=foo unrecognized aliases give a warning, and to suppress these warnings in tests, a context manager for disabling warning messages is added to testing.tools.

File last commit:

r2837:012125b0
r4214:21c18a1e
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()