Return the parent :class:`Group` instance.
(self)
| 156 | |
| 157 | # `_v_parent` is accessed via its file to avoid upwards references. |
| 158 | def _g_getparent(self) -> Group: |
| 159 | """Return the parent :class:`Group` instance.""" |
| 160 | parentpath, nodename = split_path(self._v_pathname) |
| 161 | return self._v_file._get_node(parentpath) |
| 162 | |
| 163 | _v_parent = property(_g_getparent) |
| 164 |
nothing calls this directly
no test coverage detected