##// END OF EJS Templates
Revert "Merge pull request #12757 from dangreenisrael/patch-1"...
Revert "Merge pull request #12757 from dangreenisrael/patch-1" This reverts commit b8f8280802fe3b53ece56b3cd1e8d47730836106, reversing changes made to 3587f5bb6c8570e7bbb06cf5f7e3bc9b9467355a. IPython master is compatible with jedi 0.18, it's the 7.x branch which is not

File last commit:

r25632:43a01a21
r26287:65fdb8fe
Show More
display.py
44 lines | 1.1 KiB | text/x-python | PythonLexer
Fernando Perez
Add top-level display module for public api.
r7721 """Public API for display tools in IPython.
"""
Matthias Bussonnier
Do not import from IPython.core.display and warn users.
r25632 # -----------------------------------------------------------------------------
Fernando Perez
Add top-level display module for public api.
r7721 # Copyright (C) 2012 The IPython Development Team
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
Matthias Bussonnier
Do not import from IPython.core.display and warn users.
r25632 # -----------------------------------------------------------------------------
Fernando Perez
Add top-level display module for public api.
r7721
Matthias Bussonnier
Do not import from IPython.core.display and warn users.
r25632 # -----------------------------------------------------------------------------
Fernando Perez
Add top-level display module for public api.
r7721 # Imports
Matthias Bussonnier
Do not import from IPython.core.display and warn users.
r25632 # -----------------------------------------------------------------------------
Fernando Perez
Add top-level display module for public api.
r7721
Matthias Bussonnier
Do not import from IPython.core.display and warn users.
r25632 from IPython.core.display_functions import *
from IPython.core.display import (
display_pretty,
display_html,
display_markdown,
display_svg,
display_png,
display_jpeg,
display_latex,
display_json,
display_javascript,
display_pdf,
DisplayObject,
TextDisplayObject,
Pretty,
HTML,
Markdown,
Math,
Latex,
SVG,
ProgressBar,
JSON,
GeoJSON,
Javascript,
Image,
set_matplotlib_formats,
set_matplotlib_close,
Video,
)
Fernando Perez
Add top-level display module for public api.
r7721 from IPython.lib.display import *