-
Notifications
You must be signed in to change notification settings - Fork 45
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
feat: Make GenericPath.normalize return itself #419
base: master
Are you sure you want to change the base?
Conversation
This makes writing code much easier as can be seen in the unittest.
There is also the |
I think the two different name, and the fact that |
That just doesn't help much when reading the code or when using auto-completion to write it. The counter question would be whether there is actual code that would want to use Having said that, I really don't have a particularly strong opinion on this, but I think this change should be supported by good reasoning. On a tangential note, going by the implementation, it seems like |
My use case was simply Because I checked the code, I know that For |
Okay, that makes sense. I've pushed a change to move the implementation to |
I would suggest deprecating it then. |
This makes writing code much easier as can be seen in the unittest.