Show More
@@ -1,4 +1,6 b'' | |||||
1 | """Input handling and transformation machinery. |
|
1 | """DEPRECATED: Input handling and transformation machinery. | |
|
2 | ||||
|
3 | This module was deprecated in IPython 7.0, in favour of inputtransformer2. | |||
2 |
|
4 | |||
3 | The first class in this module, :class:`InputSplitter`, is designed to tell when |
|
5 | The first class in this module, :class:`InputSplitter`, is designed to tell when | |
4 | input from a line-oriented frontend is complete and should be executed, and when |
|
6 | input from a line-oriented frontend is complete and should be executed, and when |
@@ -1,4 +1,6 b'' | |||||
1 | """Input transformer classes to support IPython special syntax. |
|
1 | """DEPRECATED: Input transformer classes to support IPython special syntax. | |
|
2 | ||||
|
3 | This module was deprecated in IPython 7.0, in favour of inputtransformer2. | |||
2 |
|
4 | |||
3 | This includes the machinery to recognise and transform ``%magic`` commands, |
|
5 | This includes the machinery to recognise and transform ``%magic`` commands, | |
4 | ``!system`` commands, ``help?`` querying, prompt stripping, and so forth. |
|
6 | ``!system`` commands, ``help?`` querying, prompt stripping, and so forth. |
@@ -1,3 +1,12 b'' | |||||
|
1 | """Input transformer machinery to support IPython special syntax. | |||
|
2 | ||||
|
3 | This includes the machinery to recognise and transform ``%magic`` commands, | |||
|
4 | ``!system`` commands, ``help?`` querying, prompt stripping, and so forth. | |||
|
5 | """ | |||
|
6 | ||||
|
7 | # Copyright (c) IPython Development Team. | |||
|
8 | # Distributed under the terms of the Modified BSD License. | |||
|
9 | ||||
1 | from codeop import compile_command |
|
10 | from codeop import compile_command | |
2 | import re |
|
11 | import re | |
3 | from typing import List, Tuple |
|
12 | from typing import List, Tuple |
General Comments 0
You need to be logged in to leave comments.
Login now