##// END OF EJS Templates
Merge pull request #13310 from Kojoley/suppress-deprecation-from-inputsplitter...
Matthias Bussonnier -
r27117:b7f20475 merge
parent child Browse files
Show More
@@ -9,7 +9,8 b' import unittest'
9 import pytest
9 import pytest
10 import sys
10 import sys
11
11
12 from IPython.core import inputsplitter as isp
12 with pytest.warns(DeprecationWarning, match="inputsplitter"):
13 from IPython.core import inputsplitter as isp
13 from IPython.core.inputtransformer import InputTransformer
14 from IPython.core.inputtransformer import InputTransformer
14 from IPython.core.tests.test_inputtransformer import syntax, syntax_ml
15 from IPython.core.tests.test_inputtransformer import syntax, syntax_ml
15 from IPython.testing import tools as tt
16 from IPython.testing import tools as tt
General Comments 0
You need to be logged in to leave comments. Login now