MCPcopy Create free account
hub / github.com/python/mypy / __init__

Method __init__

mypyc/ir/ops.py:611–615  ·  view source on GitHub ↗
(self, src: Value, is_xdec: bool = False, line: int = -1)

Source from the content-addressed store, hash-verified

609 error_kind = ERR_NEVER
610
611 def __init__(self, src: Value, is_xdec: bool = False, line: int = -1) -> None:
612 assert src.type.is_refcounted
613 super().__init__(line)
614 self.src = src
615 self.is_xdec = is_xdec
616
617 def __repr__(self) -> str:
618 return "<{}DecRef {!r}>".format("X" if self.is_xdec else "", self.src)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected