Return True if the node under `path` is visible. If the node does not exist, a NoSuchNodeError is raised.
(self, path: str)
| 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, |
nothing calls this directly
no test coverage detected