##// END OF EJS Templates
Merge pull request #1341 from takluyver/i1317...
Merge pull request #1341 from takluyver/i1317 Don't attempt to tokenize binary files for tracebacks. Previously we had been trying and just catching the exception, but in corner cases the tokenizer can run for several seconds before raising an exception (#1317). This skips tokenizing if the file has the extension .so, .pyd or .dll. Closes gh-1317.

File last commit:

r4246:4232a692
r6011:a1769ad0 merge
Show More
ipython
7 lines | 153 B | text/plain | TextLexer
#!/usr/bin/env python
"""Terminal-based IPython entry point.
"""
from IPython.frontend.terminal.ipapp import launch_new_instance
launch_new_instance()