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

Method is_visible_node

tables/file.py:1819–1826  ·  view source on GitHub ↗

Return True if the node under `path` is visible. If the node does not exist, a NoSuchNodeError is raised.

(self, path: str)

Source from the content-addressed store, hash-verified

1817 return node
1818
1819 def is_visible_node(self, path: str) -> bool:
1820 """Return True if the node under `path` is visible.
1821
1822 If the node does not exist, a NoSuchNodeError is raised.
1823
1824 """
1825 # ``util.isvisiblepath()`` is still recommended for internal use.
1826 return self.get_node(path)._f_isvisible()
1827
1828 def rename_node(
1829 self,

Callers

nothing calls this directly

Calls 2

get_nodeMethod · 0.95
_f_isvisibleMethod · 0.80

Tested by

no test coverage detected