You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When playing with file://uris I found a weird behaviour related to path setter.
Steps to reproduce
>>> x = furl('file:///a/b')
>>> x.path
Path('/a/b')
>>> x.path.isabsolute # The path here is absolute and is ok
True
>>> x.path = x.path / 'c'
>>> x.path # Once set to the path attribute of a furl object the path is not absolute anymore
Path('a/b/c')
>>> x.path.isabsolute
False
Additional info & workaround
This problem does not happen whan assigning a path as a string
Hello,
When playing with
file://
uris I found a weird behaviour related topath
setter.Steps to reproduce
Additional info & workaround
This problem does not happen whan assigning a path as a string
Expected behaviour
The concatenation of a path segment should not change the way the path interpreted
The text was updated successfully, but these errors were encountered: