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

Method note

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

Source from the content-addressed store, hash-verified

1944 self.errors.report(line, column, msg.value, blocker=True, code=msg.code)
1945
1946 def note(self, msg: str, line: int, column: int) -> None:
1947 if self.errors:
1948 self.errors.report(line, column, msg, severity="note", code=codes.SYNTAX)
1949
1950 def translate_expr_list(self, l: Sequence[ast3.expr]) -> list[Type]:
1951 return [self.visit(e) for e in l]

Callers

nothing calls this directly

Calls 1

reportMethod · 0.45

Tested by

no test coverage detected