Convert into an absolute path.
(self)
| 39 | # TODO should we also forbid suffixes to avoid node names with dots in them? |
| 40 | |
| 41 | def absolute(self) -> Self: |
| 42 | """Convert into an absolute path.""" |
| 43 | return type(self)("/", *self.parts) |
| 44 | |
| 45 | |
| 46 | class TreeNode: |