##// END OF EJS Templates
Use ansi code for soon-to-be released prompt_toolkit....
Use ansi code for soon-to-be released prompt_toolkit. Prompt toolkit use to try to map 256 colors code to closest ansi code but does not do that anymore. This should fix (some of) the occurrences.

File last commit:

r21609:fa0c8cb1
r24680:b73398c4
Show More
mathjax.py
13 lines | 308 B | text/x-python | PythonLexer
#!/usr/bin/python
"""
`IPython.external.mathjax` is deprecated with IPython 4.0+
mathjax is now install by default with the notebook package
"""
import sys
if __name__ == '__main__' :
sys.exit("IPython.external.mathjax is deprecated, Mathjax is now installed by default with the notebook package")