Return True if this node is visible. This method has the behavior described in :meth:`Node._f_isvisible()`.
(self)
| 872 | self._g_truncate(size) |
| 873 | |
| 874 | def isvisible(self) -> bool: |
| 875 | """Return True if this node is visible. |
| 876 | |
| 877 | This method has the behavior described in :meth:`Node._f_isvisible()`. |
| 878 | |
| 879 | """ |
| 880 | return self._f_isvisible() |
| 881 | |
| 882 | # Attribute handling |
| 883 | def get_attr(self, name: str) -> Any: |
nothing calls this directly
no test coverage detected