MCPcopy Index your code
hub / github.com/PyTables/PyTables / _get_node

Method _get_node

tables/file.py:1736–1744  ·  view source on GitHub ↗
(self, nodepath: str)

Source from the content-addressed store, hash-verified

1734 return elink
1735
1736 def _get_node(self, nodepath: str) -> Node | RootGroup:
1737 # The root node is always at hand.
1738 if nodepath == "/":
1739 return self.root
1740
1741 node = self._node_manager.get_node(nodepath)
1742 assert node is not None, "unable to instantiate node ``%s``" % nodepath
1743
1744 return node
1745
1746 def get_node(
1747 self,

Callers 15

get_nodeMethod · 0.95
_g_getparentMethod · 0.80
dereferenceMethod · 0.80
__call__Method · 0.80
_g_getnodeMethod · 0.80
autoindexMethod · 0.80
_g_moveMethod · 0.80
_g_removeMethod · 0.80
_v_tableMethod · 0.80
tableMethod · 0.80
indexMethod · 0.80

Calls 1

get_nodeMethod · 0.45

Tested by

no test coverage detected