Docs remote exec permissions#144013
Closed
shreyadesai20042009 wants to merge 2 commits intopython:mainfrom
Closed
Conversation
|
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
aisk
reviewed
Jan 18, 2026
| eval_result = pdb_eval["result"] | ||
| if eval_result is not None: | ||
| print(repr(eval_result)) | ||
| self.message(repr(eval_result)) |
Member
There was a problem hiding this comment.
Hi, if we changed this, I think this is not just a doc change or test change, so it should have a news entry file.
Member
|
There is already an existing PR. Read the devguide and our policy on AI. |
Author
|
Thank you for the clarification.
I understand now that this change affects runtime behavior and therefore
requires a NEWS entry. I also realize that there was already an existing PR
for this issue and that I should have checked before opening a new one.
I’ll read the CPython devguide and contribution policies more carefully
before submitting future PRs. Thanks for the feedback.
…On Mon, 19 Jan 2026 at 01:25, Bénédikt Tran ***@***.***> wrote:
*picnixz* left a comment (python/cpython#144013)
<#144013 (comment)>
There is already an existing PR. Read the devguide and our policy on AI.
—
Reply to this email directly, view it on GitHub
<#144013 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/BHNF7ZPFT5BBPKC5FJK3NFD4HPQMVAVCNFSM6AAAAACSCUQLPKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZTONRVGY4DCMRZGY>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #143511
Clarifies that the target Python process must have permission to read
the injected script file when using sys.remote_exec. Elevated privileges
on the debugger alone may not be sufficient.