Show More
@@ -16,6 +16,11 b' and stores the results.' | |||
|
16 | 16 | For more details, see the class docstrings below. |
|
17 | 17 | """ |
|
18 | 18 | |
|
19 | from warnings import warn | |
|
20 | ||
|
21 | warn('IPython.core.inputsplitter is deprecated since IPython 7 in favor of `IPython.core.inputtransformer2`', | |
|
22 | DeprecationWarning) | |
|
23 | ||
|
19 | 24 | # Copyright (c) IPython Development Team. |
|
20 | 25 | # Distributed under the terms of the Modified BSD License. |
|
21 | 26 | import ast |
@@ -349,10 +349,15 b' class InteractiveShell(SingletonConfigurable):' | |||
|
349 | 349 | |
|
350 | 350 | @property |
|
351 | 351 | def input_splitter(self): |
|
352 | """Make this available for compatibility | |
|
352 | """Make this available for backward compatibility (pre-7.0 release) with existing code. | |
|
353 | 353 | |
|
354 | ipykernel currently uses shell.input_splitter.check_complete | |
|
354 | For example, ipykernel ipykernel currently uses | |
|
355 | `shell.input_splitter.check_complete` | |
|
355 | 356 | """ |
|
357 | from warnings import warn | |
|
358 | warn("`input_splitter` is deprecated since IPython 7.0, prefer `input_transformer_manager`.", | |
|
359 | DeprecationWarning, stacklevel=2 | |
|
360 | ) | |
|
356 | 361 | return self.input_transformer_manager |
|
357 | 362 | |
|
358 | 363 | logstart = Bool(False, help= |
General Comments 0
You need to be logged in to leave comments.
Login now