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