Show More
@@ -1,4 +1,6 | |||
|
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 | 5 | The first class in this module, :class:`InputSplitter`, is designed to tell when |
|
4 | 6 | input from a line-oriented frontend is complete and should be executed, and when |
@@ -1,4 +1,6 | |||
|
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 | 5 | This includes the machinery to recognise and transform ``%magic`` commands, |
|
4 | 6 | ``!system`` commands, ``help?`` querying, prompt stripping, and so forth. |
@@ -1,3 +1,12 | |||
|
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 | 10 | from codeop import compile_command |
|
2 | 11 | import re |
|
3 | 12 | from typing import List, Tuple |
General Comments 0
You need to be logged in to leave comments.
Login now