The drive prefix (letter or UNC path), if any.
(self)
| 342 | |
| 343 | @property |
| 344 | def drive(self): |
| 345 | """The drive prefix (letter or UNC path), if any.""" |
| 346 | try: |
| 347 | return self._drv |
| 348 | except AttributeError: |
| 349 | self._drv, self._root, self._tail_cached = self._parse_path(self._raw_path) |
| 350 | return self._drv |
| 351 | |
| 352 | @property |
| 353 | def root(self): |
nothing calls this directly
no test coverage detected