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
/a/** is understood by Path.full_match as "/a followed by multiple segments, at least one", instead of "/a followed by multiple segments, including zero".
** (entire segment)
Matches any number of file or directory segments, including zero.
# one segment per **Path('/a/b').full_match('/a/**') # True# zero segments per **Path('/a').full_match('/a/**') # False - expected True# interestinglyPath('/').full_match('/**') # True