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
The current implementation of pathlib.Path.absolute() calls self.cwd() rather than os.getcwd(), and so constructs twoPath objects rather than one. As path objects are slow to construct, this has a performance impact.
The current implementation of
pathlib.Path.absolute()callsself.cwd()rather thanos.getcwd(), and so constructs twoPathobjects rather than one. As path objects are slow to construct, this has a performance impact.Linked PRs
pathlib.Path.absolute()#100563