MCPcopy Index your code
hub / github.com/python/mypy / note

Method note

mypy/fastparse.py:397–398  ·  view source on GitHub ↗
(self, msg: str, line: int, column: int)

Source from the content-addressed store, hash-verified

395 self.visitor_cache: dict[type, Callable[[AST | None], Any]] = {}
396
397 def note(self, msg: str, line: int, column: int) -> None:
398 self.errors.report(line, column, msg, severity="note", code=codes.SYNTAX)
399
400 def fail(self, msg: ErrorMessage, line: int, column: int, blocker: bool) -> None:
401 if blocker or not self.options.ignore_errors:

Callers 1

do_func_defMethod · 0.95

Calls 1

reportMethod · 0.45

Tested by

no test coverage detected