MCPcopy Create free account
hub / github.com/pytest-dev/pytest / __init__

Method __init__

src/_pytest/mark/structures.py:544–547  ·  view source on GitHub ↗
(self, node: "Node")

Source from the content-addressed store, hash-verified

542 __slots__ = ("node", "parent", "_markers")
543
544 def __init__(self, node: "Node") -> None:
545 self.node = node
546 self.parent = node.parent
547 self._markers = {node.name: True}
548
549 def __getitem__(self, key: str) -> Any:
550 try:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected