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

Class DelStmt

mypy/nodes.py:2036–2048  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2034
2035
2036class DelStmt(Statement):
2037 __slots__ = ("expr",)
2038
2039 __match_args__ = ("expr",)
2040
2041 expr: Lvalue
2042
2043 def __init__(self, expr: Lvalue) -> None:
2044 super().__init__()
2045 self.expr = expr
2046
2047 def accept(self, visitor: StatementVisitor[T]) -> T:
2048 return visitor.visit_del_stmt(self)
2049
2050
2051class BreakStmt(Statement):

Callers 3

visit_DeleteMethod · 0.90
visit_del_stmtMethod · 0.90
read_statementFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…