Uh oh!
There was an error while loading. Please reload this page.
[3.12] gh-102511: Fix os.path.normpath() for UNC paths on Windows. - #119394
[3.12] gh-102511: Fix os.path.normpath() for UNC paths on Windows.#119394nineteendo wants to merge 7 commits into
os.path.normpath() for UNC paths on Windows.#119394Conversation
Fixes |
zooba
commented
May 22, 2024
I want to hold this for a bit until we're confident in the change in later versions. Virtually every time we touch this kind of code, we introduce new failures or vulnerabilities, so let's keep it restricted to prerelease versions for now. I'd say after 3.13.0b3 is released we'll reconsider, but that's because I'm hopeful we'll get a decent amount of people trying out those betas. If it seems like nobody is using them, we'll push this further. |
erlend-aasland
commented
May 30, 2024
@zooba, why is this being considered for 3.12? |
zooba
commented
May 31, 2024
@erlend-aasland For the reasons nineteendo mentioned above:
Performance optimisations are usually okay in bugfix releases as well, provided they aren't changing public APIs, but generally aren't deemed worth the churn on their own. In this case, keeping the implementation consistent pushes it over the edge, IMHO. |
erlend-aasland
commented
May 31, 2024
We normally do not backport performance optimisations unless we're talking about performance degradations that classify as bugs. |
erlend-aasland
commented
May 31, 2024
Quoting the devguide, for visibility:
|
I don't see the problem here. We are fixing a bug, while at the same time improving the performance of
|
zooba
commented
May 31, 2024
A performance-optimisation for performation-optimisation's sake, I agree. This is also ensuring that the code remains the same between supported versions, which makes backporting easier. If the concern is the description of the fix, we can change it for 3.12. It won't match the description of the equivalent code that's already in 3.13, but that doesn't bother me. |
os.path.normpath() for UNC paths on Windows.gpshead
commented
May 31, 2024
This needs unittests ensuring that the C and Python versions of the functions have identical behavior (in main, not just in this backport). If you want to propose this for backporting, it helps to make the change easy to understand what changed from a simple GH diff view. To do that, please don't indent the existing Python splitroot() implementations. Keep those at the top level, just renaming them to _py_splitroot, and using the conditional import logic only to assign/redefine the appropriate function to the splitroot name within the new code. This is also needed for testing purposes so that both versions exist. Work all that out in main first. |
gpshead
commented
May 31, 2024
The Issue and the change in main/3.13 do not mention anything about a bug being fixed in the Issue, PR description, or commit message. What was the bug? Please make sure the Issue explains what the bug was and new desired behavior is, and that the NEWS entry in main/3.13 is fixed to describe the bugfix before considering a backport. |
nineteendo
commented
May 31, 2024
>>>ntpath.normpath('//?/UNC/server/share/../..')
'\\\\?\\UNC\\'# instead of '\\\\?\\UNC\\server\\share\\' |
…4-43-25.gh-issue-102511.kl4x8H.rst
91cc736 to
9b930a5Compare3308d41 to
43993c5Comparenineteendo
commented
Oct 14, 2024
Steve, can we re-consider now? I've waited a bit longer until 3.13 was released. |
erlend-aasland
commented
Oct 14, 2024
The 3.12 bug-fix-window is considerably smaller now, implying that the code-remains-the-same argument of #119394 (comment) is considerably weakened. |
zooba
commented
Oct 16, 2024
I'd rate this code as security-sensitive, meaning it's more likely to get fixes that we'd have to backport throughout all security releases. But that also suggests we shouldn't be changing it for an issue that already existed in case we create a new issue. Plus it means a backport would likely need customisation for older versions anyway. The one year window where it's definitely worth it (after 3.11 is EOL) isn't very long, and the bug wasn't reported specifically, but was discovered. I'm leaning towards status quo (don't merge), just because we apparently haven't upset anyone yet (except perhaps nineteendo, sorry) and not changing things rarely makes it worse. |
nineteendo
commented
Oct 16, 2024
It's fine, I'm just happy I can finally delete this branch and forget about it. |
Uh oh!
There was an error while loading. Please reload this page.