-
-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GH-104996: Defer joining of pathlib.PurePath()
arguments.
#104999
GH-104996: Defer joining of pathlib.PurePath()
arguments.
#104999
Conversation
Joining of arguments is moved to `_load_parts`, which is called when a normalized path is needed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks really nice (I love the approach) — just one question:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work!
Thanks @barneygale for the PR 🌮🎉.. I'm working now to backport this PR to: 3.12. |
Sorry, @barneygale, I could not cleanly backport this to |
…thonGH-104999) Joining of arguments is moved to `_load_parts`, which is called when a normalized path is needed. (cherry picked from commit ffeaec7)
…ts. (pythonGH-104999) Joining of arguments is moved to `_load_parts`, which is called when a normalized path is needed.. (cherry picked from commit ffeaec7) Co-authored-by: Barney Gale <barney.gale@gmail.com>
GH-105483 is a backport of this pull request to the 3.12 branch. |
Joining of arguments is moved to
_load_parts
, which is called when a normalized path is needed.