Open
Description
This will be the next big change in UPath
.
In the near future we will derive from pathlib_abc.PathBase
:
from pathlib_abc import PathBase
class UPath(PathBase):
...
We will have to consider a few things before this is possible:
- a clean deprecation mechanism for code that checks
isinstance(p, Path)
- how do
WindowsUPath
andPosixUPath
change?