##// END OF EJS Templates
Explicit imports
Jonathan Frederic -
Show More
@@ -17,7 +17,7 b' Module with tests for ansi filters'
17 17 from IPython.utils.coloransi import TermColors
18 18
19 19 from ...tests.base import TestsBase
20 from ..ansi import *
20 from ..ansi import strip_ansi, ansi2html, ansi2latex
21 21
22 22
23 23 #-----------------------------------------------------------------------------
@@ -16,7 +16,7 b' Module with tests for Highlight'
16 16
17 17
18 18 from ...tests.base import TestsBase
19 from ..highlight import *
19 from ..highlight import highlight2html, highlight2latex
20 20
21 21
22 22 #-----------------------------------------------------------------------------
@@ -16,7 +16,7 b' Module with tests for Latex'
16 16
17 17
18 18 from ...tests.base import TestsBase
19 from ..latex import *
19 from ..latex import escape_latex, strip_math_space
20 20
21 21
22 22 #-----------------------------------------------------------------------------
@@ -21,7 +21,7 b' from IPython.testing.decorators import onlyif_cmds_exist'
21 21 from IPython.utils.py3compat import string_types
22 22
23 23 from ...tests.base import TestsBase
24 from ..markdown import *
24 from ..markdown import markdown2latex, markdown2html, markdown2rst
25 25
26 26
27 27 #-----------------------------------------------------------------------------
@@ -15,7 +15,8 b' Module with tests for Strings'
15 15 #-----------------------------------------------------------------------------
16 16
17 17 from ...tests.base import TestsBase
18 from ..strings import *
18 from ..strings import wrap_text, html2text, add_anchor, strip_dollars,
19 strip_files_prefix, get_lines, comment_lines, ipython2python
19 20
20 21
21 22 #-----------------------------------------------------------------------------
General Comments 0
You need to be logged in to leave comments. Login now