##// END OF EJS Templates
Fix formatting of usage examples for `set_env` magic (#13911)...
Fix formatting of usage examples for `set_env` magic (#13911) See the difference between how `env` and `set_env` look in the [docs](http://ipython.readthedocs.io/en/stable/interactive/magics.html). <img width="600" alt="image" src="https://user-images.githubusercontent.com/14007150/215095416-c8e08aca-4c61-4bc9-a84e-81209607c74f.png"> <img width="725" alt="image" src="https://user-images.githubusercontent.com/14007150/215095718-532fe30f-a4b0-446e-ba61-73c5cf1e988e.png">

File last commit:

r25632:43a01a21
r28081:13f20b59 merge
Show More
display.py
44 lines | 1.1 KiB | text/x-python | PythonLexer
"""Public API for display tools in IPython.
"""
# -----------------------------------------------------------------------------
# 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.
# -----------------------------------------------------------------------------
# -----------------------------------------------------------------------------
# Imports
# -----------------------------------------------------------------------------
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,
)
from IPython.lib.display import *