##// END OF EJS Templates
ipython.display: publicly re-export imports from ipython.core.display (resolves #14154)
Kye Shi -
Show More
@@ -14,31 +14,31 b''
14
14
15 from IPython.core.display_functions import *
15 from IPython.core.display_functions import *
16 from IPython.core.display import (
16 from IPython.core.display import (
17 display_pretty,
17 display_pretty as display_pretty,
18 display_html,
18 display_html as display_html,
19 display_markdown,
19 display_markdown as display_markdown,
20 display_svg,
20 display_svg as display_svg,
21 display_png,
21 display_png as display_png,
22 display_jpeg,
22 display_jpeg as display_jpeg,
23 display_latex,
23 display_latex as display_latex,
24 display_json,
24 display_json as display_json,
25 display_javascript,
25 display_javascript as display_javascript,
26 display_pdf,
26 display_pdf as display_pdf,
27 DisplayObject,
27 DisplayObject as DisplayObject,
28 TextDisplayObject,
28 TextDisplayObject as TextDisplayObject,
29 Pretty,
29 Pretty as Pretty,
30 HTML,
30 HTML as HTML,
31 Markdown,
31 Markdown as Markdown,
32 Math,
32 Math as Math,
33 Latex,
33 Latex as Latex,
34 SVG,
34 SVG as SVG,
35 ProgressBar,
35 ProgressBar as ProgressBar,
36 JSON,
36 JSON as JSON,
37 GeoJSON,
37 GeoJSON as GeoJSON,
38 Javascript,
38 Javascript as Javascript,
39 Image,
39 Image as Image,
40 set_matplotlib_formats,
40 set_matplotlib_formats as set_matplotlib_formats,
41 set_matplotlib_close,
41 set_matplotlib_close as set_matplotlib_close,
42 Video,
42 Video as Video,
43 )
43 )
44 from IPython.lib.display import *
44 from IPython.lib.display import *
General Comments 0
You need to be logged in to leave comments. Login now