-
-
Notifications
You must be signed in to change notification settings - Fork 33.6k
gh-142315: Don't pass the "real path" of Pdb script target to system functions #142371
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
base: main
Are you sure you want to change the base?
Conversation
Or... maybe I just mention the issue in a comment above the affected lines -- this will be my escape hatch to not write tests 💡 |
ac11ff4 to
682069d
Compare
682069d to
7050770
Compare
|
Ok, this one is clean and works! |
7767efa to
d9932f5
Compare
|
Thanks for the contrib!
My preference would be to create a regression test. It seems it shouldn't be too hard to create or identify a pseudofs object to pass in and catch the SystemExit. I'll work on one. I saw in email that @johnslavik did some analysis on the root cause in readpath/readlink. It'd be nice to get that published somewhere. Even if there's nothing wrong with Python's wrapper around realpath, it may still be worth filing an issue to capture the investigation and consider updating the docs to flag this potential issue. |
|
I've created #142383 with a test. Assuming that test is failing as expected, I'll try merging it with this fix. |
60aa009 to
e42ba5e
Compare
e42ba5e to
5b12904
Compare
|
I think I like it the way it is now. It's a problem of maintaining the equivalence invariant -- easy to follow. |
264e306 to
4ca2bcf
Compare
|
@jaraco Can we display |
We could; it's not obvious to me what is the best choice. I elected not to change the behavior from what was stable (and just surgically address the one edge case). What's the case for using |
I'm not aiming to display realpath in the message, but to display the same path that was checked, not something potentially different which can lead to a confusing or incorrect message. It was part of the report -- had the same target that was checked been used in the error message, it would have been much clearer what happened. I'm fine with not displaying realpath, but only provided that we don't check the realpath -- so, what we check and what we display is always the same (this is the most important to me, because only then the message is certainly correct). Apart from that,
The discrepancy between what is displayed and what is checked was introduced in GH-26992. |
|
Thanks for the explanation. I do agree, it's a little disorienting that the check is on one value but the error message reflects a different value. As you pointed out, GH-26992 originated this issue, and in that change, I explicitly attempted to avoid or to account for any meaningful changes to behavior. That included not changing the input path in the error message. I suspect it's important to the user that whatever they supplied as the script name is reflected in the error message (and not the realpath-mutated value). So maybe it makes sense to use If that's important, that aspect is not captured by a regression test. I think we need a regression test or at least a comment that captures this refined expectation. As I look at this further, I'm struggling to understand why the realpath issue didn't affect older Pythons.
Except it was. The mutation happened here, which was then passed to _runscript here, which is consumed here. I don't yet understand why the broken realpath didn't cause problems subsequently. |
…w no longer needed.
|
Oh! I see now. The use of realpath was introduced in #23338. That suggests that the proper fix may be to go back to that older behavior and narrow the use of realpath to the |
|
In 855aac3, I've isolated the realpath usage to the |
|
That doesn't work. It causes a regression in test_issue42383. |
…sage there." This reverts commit 855aac3.
Exactly.
Precisely.
Sure!
Thank you -- that's correct, I must have misread it. @jaraco Would the logic from 5b12904 suffice? I believe it passed all tests and it solved both problems, namely (1) potentially incorrect error message (2) support for live descriptors of internal kernel objects. |
Oh the irony that this was never a real path.
I need to figure out how to test this -- it's a regression, after all, so no excuses this time.
CC @ZeroIntensity
needs backport to 3.13,needs backport to 3.14