Return whether two access paths are equal.
(self, other: Any)
| 123 | return AccessPath._root() |
| 124 | |
| 125 | def __eq__(self, other: Any) -> bool: |
| 126 | """Return whether two access paths are equal.""" |
| 127 | if not isinstance(other, AccessPath): |
| 128 | return False |
| 129 | return self._path_equal(other) |
| 130 | |
| 131 | def __ne__(self, other: Any) -> bool: |
| 132 | """Return whether two access paths are not equal.""" |
nothing calls this directly
no test coverage detected