(self)
| 221 | |
| 222 | @property |
| 223 | def _parts_normcase(self): |
| 224 | # Cached parts with normalized case, for comparisons. |
| 225 | try: |
| 226 | return self._parts_normcase_cached |
| 227 | except AttributeError: |
| 228 | self._parts_normcase_cached = self._str_normcase.split(self.parser.sep) |
| 229 | return self._parts_normcase_cached |
| 230 | |
| 231 | def __lt__(self, other): |
| 232 | if not isinstance(other, PurePath) or self.parser is not other.parser: |