Sets the current node to the parent node and the parent node to its own parent. :return: ``True`` iff the pointers to the current/parent nodes are changed, ``False`` otherwise.
(self)
| 753 | return pn_data_enter(self._data) |
| 754 | |
| 755 | def exit(self) -> bool: |
| 756 | """ |
| 757 | Sets the current node to the parent node and the parent node to |
| 758 | its own parent. |
| 759 | |
| 760 | :return: ``True`` iff the pointers to the current/parent nodes are changed, |
| 761 | ``False`` otherwise. |
| 762 | """ |
| 763 | return pn_data_exit(self._data) |
| 764 | |
| 765 | def lookup(self, name: str) -> bool: |
| 766 | return pn_data_lookup(self._data, name) |