mirror of
https://github.com/davidhalter/parso.git
synced 2025-12-06 12:54:29 +08:00
Be stricter about mypy needing error codes
These make it clearer what's being ignored and harder to accidentally ignore more than expected.
This commit is contained in:
@@ -106,14 +106,14 @@ class Grammar(Generic[_NodeT]):
|
||||
|
||||
if file_io is None:
|
||||
if code is None:
|
||||
file_io = FileIO(path) # type: ignore
|
||||
file_io = FileIO(path) # type: ignore[arg-type]
|
||||
else:
|
||||
file_io = KnownContentFileIO(path, code)
|
||||
|
||||
if cache and file_io.path is not None:
|
||||
module_node = load_module(self._hashed, file_io, cache_path=cache_path)
|
||||
if module_node is not None:
|
||||
return module_node # type: ignore
|
||||
return module_node # type: ignore[no-any-return]
|
||||
|
||||
if code is None:
|
||||
code = file_io.read()
|
||||
@@ -132,7 +132,7 @@ class Grammar(Generic[_NodeT]):
|
||||
module_node = module_cache_item.node
|
||||
old_lines = module_cache_item.lines
|
||||
if old_lines == lines:
|
||||
return module_node # type: ignore
|
||||
return module_node # type: ignore[no-any-return]
|
||||
|
||||
new_node = self._diff_parser(
|
||||
self._pgen_grammar, self._tokenizer, module_node
|
||||
@@ -144,7 +144,7 @@ class Grammar(Generic[_NodeT]):
|
||||
# Never pickle in pypy, it's slow as hell.
|
||||
pickling=cache and not is_pypy,
|
||||
cache_path=cache_path)
|
||||
return new_node # type: ignore
|
||||
return new_node # type: ignore[no-any-return]
|
||||
|
||||
tokens = self._tokenizer(lines)
|
||||
|
||||
@@ -160,7 +160,7 @@ class Grammar(Generic[_NodeT]):
|
||||
# Never pickle in pypy, it's slow as hell.
|
||||
pickling=cache and not is_pypy,
|
||||
cache_path=cache_path)
|
||||
return root_node # type: ignore
|
||||
return root_node # type: ignore[no-any-return]
|
||||
|
||||
def _get_token_namespace(self):
|
||||
ns = self._token_namespace
|
||||
|
||||
@@ -276,7 +276,7 @@ def generate_grammar(bnf_grammar: str, token_namespace) -> Grammar:
|
||||
dfa_state.transitions[transition] = DFAPlan(next_dfa)
|
||||
|
||||
_calculate_tree_traversal(rule_to_dfas)
|
||||
return Grammar(start_nonterminal, rule_to_dfas, reserved_strings) # type: ignore
|
||||
return Grammar(start_nonterminal, rule_to_dfas, reserved_strings) # type: ignore[arg-type]
|
||||
|
||||
|
||||
def _make_transition(token_namespace, reserved_syntax_strings, label):
|
||||
|
||||
Reference in New Issue
Block a user