aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/ipython/py3/IPython/core/inputsplitter.py
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2023-11-14 19:18:07 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2023-11-14 20:20:53 +0300
commit874ef51d3d3edfa25f5a505ec6ab50e172965d1e (patch)
tree620fb5e02063d23509d3aa3df2215c099ccde0b7 /contrib/python/ipython/py3/IPython/core/inputsplitter.py
parente356b34d3b0399e2f170881af15c91e4db9e3d11 (diff)
downloadydb-874ef51d3d3edfa25f5a505ec6ab50e172965d1e.tar.gz
Intermediate changes
Diffstat (limited to 'contrib/python/ipython/py3/IPython/core/inputsplitter.py')
-rw-r--r--contrib/python/ipython/py3/IPython/core/inputsplitter.py32
1 files changed, 20 insertions, 12 deletions
diff --git a/contrib/python/ipython/py3/IPython/core/inputsplitter.py b/contrib/python/ipython/py3/IPython/core/inputsplitter.py
index a4401184bd..33ed563221 100644
--- a/contrib/python/ipython/py3/IPython/core/inputsplitter.py
+++ b/contrib/python/ipython/py3/IPython/core/inputsplitter.py
@@ -31,7 +31,8 @@ import sys
import tokenize
import warnings
-from typing import List
+from typing import List, Tuple, Union, Optional
+from types import CodeType
from IPython.core.inputtransformer import (leading_indent,
classic_prompt,
@@ -91,7 +92,13 @@ def num_ini_spaces(s):
-------
n : int
"""
-
+ warnings.warn(
+ "`num_ini_spaces` is Pending Deprecation since IPython 8.17."
+ "It is considered fro removal in in future version. "
+ "Please open an issue if you believe it should be kept.",
+ stacklevel=2,
+ category=PendingDeprecationWarning,
+ )
ini_spaces = ini_spaces_re.match(s)
if ini_spaces:
return ini_spaces.end()
@@ -144,7 +151,7 @@ def partial_tokens(s):
else:
raise
-def find_next_indent(code):
+def find_next_indent(code) -> int:
"""Find the number of spaces for the next line of indentation"""
tokens = list(partial_tokens(code))
if tokens[-1].type == tokenize.ENDMARKER:
@@ -318,7 +325,7 @@ class InputSplitter(object):
# If self.source matches the first value, the second value is a valid
# current indentation. Otherwise, the cache is invalid and the indentation
# must be recalculated.
- _indent_spaces_cache = None, None
+ _indent_spaces_cache: Union[Tuple[None, None], Tuple[str, int]] = None, None
# String, indicating the default input encoding. It is computed by default
# at initialization time via get_input_encoding(), but it can be reset by a
# client with specific knowledge of the encoding.
@@ -326,11 +333,11 @@ class InputSplitter(object):
# String where the current full source input is stored, properly encoded.
# Reading this attribute is the normal way of querying the currently pushed
# source code, that has been properly encoded.
- source = ''
+ source: str = ""
# Code object corresponding to the current source. It is automatically
# synced to the source, so it can be queried at any time to obtain the code
# object; it will be None if the source doesn't compile to valid Python.
- code = None
+ code: Optional[CodeType] = None
# Private attributes
@@ -339,9 +346,9 @@ class InputSplitter(object):
# Command compiler
_compile: codeop.CommandCompiler
# Boolean indicating whether the current block is complete
- _is_complete = None
+ _is_complete: Optional[bool] = None
# Boolean indicating whether the current block has an unrecoverable syntax error
- _is_invalid = False
+ _is_invalid: bool = False
def __init__(self) -> None:
"""Create a new InputSplitter instance."""
@@ -511,9 +518,10 @@ class InputSplitter(object):
# General fallback - accept more code
return True
- def get_indent_spaces(self):
+ def get_indent_spaces(self) -> int:
sourcefor, n = self._indent_spaces_cache
if sourcefor == self.source:
+ assert n is not None
return n
# self.source always has a trailing newline
@@ -562,7 +570,7 @@ class IPythonInputSplitter(InputSplitter):
# Private attributes
# List with lines of raw input accumulated so far.
- _buffer_raw = None
+ _buffer_raw: List[str]
def __init__(self, line_input_checker=True, physical_line_transforms=None,
logical_line_transforms=None, python_line_transforms=None):
@@ -652,8 +660,8 @@ class IPythonInputSplitter(InputSplitter):
tmp = transform.reset()
if tmp is not None:
yield tmp
-
- out = []
+
+ out: List[str] = []
for t in self.transforms_in_use:
out = _flush(t, out)