-
Notifications
You must be signed in to change notification settings - Fork 68
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
The constructor signature of pathlib
's path classes is actually:
class pathlib.PurePath(*pathsegments)
with behavior that follows os.path.join
's behavior.
https://docs.python.org/3/library/pathlib.html#pathlib.PurePath
Is this something we should support? It adds some complexity, because we'd have to decide what to do or how to error with multiple URI schemes or if people use a root slash. (Some of the behavior from pathlib
/os.path.join
is kind of confusing.)
It would also make an AnyPath
(#77) more faithful when dispatching to pathlib
.
rmharrison
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers