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
Path.copy_stat always copies both mtime/atime and mode, regardless of the times and perms args it is passed. Given the implementation of Path.copy, this means only times=True,perms=True and times=False,perms=False work properly. Passing True,False or False,True results in both times and perms being copied.
The text was updated successfully, but these errors were encountered:
Path.copy_stat always copies both mtime/atime and mode, regardless of the
times
andperms
args it is passed. Given the implementation of Path.copy, this means only times=True,perms=True and times=False,perms=False work properly. Passing True,False or False,True results in both times and perms being copied.The text was updated successfully, but these errors were encountered: