##// END OF EJS Templates
Update release_helper.sh from git switch...
Update release_helper.sh from git switch switch only works from branches not tags.

File last commit:

r28404:a6441287
r28493:f0d04dad Carreau-patch-1
Show More
display.py
44 lines | 1.5 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 (
Kye Shi
ipython.display: publicly re-export imports from ipython.core.display (resolves #14154)
r28404 display_pretty as display_pretty,
display_html as display_html,
display_markdown as display_markdown,
display_svg as display_svg,
display_png as display_png,
display_jpeg as display_jpeg,
display_latex as display_latex,
display_json as display_json,
display_javascript as display_javascript,
display_pdf as display_pdf,
DisplayObject as DisplayObject,
TextDisplayObject as TextDisplayObject,
Pretty as Pretty,
HTML as HTML,
Markdown as Markdown,
Math as Math,
Latex as Latex,
SVG as SVG,
ProgressBar as ProgressBar,
JSON as JSON,
GeoJSON as GeoJSON,
Javascript as Javascript,
Image as Image,
set_matplotlib_formats as set_matplotlib_formats,
set_matplotlib_close as set_matplotlib_close,
Video as Video,
Matthias Bussonnier
Do not import from IPython.core.display and warn users.
r25632 )
Fernando Perez
Add top-level display module for public api.
r7721 from IPython.lib.display import *