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