Skip to content
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

bpo-22689: Copy the result of getenv() in sys_breakpointhook(). #8194

Merged

Conversation

serhiy-storchaka
Copy link
Member

@serhiy-storchaka serhiy-storchaka commented Jul 9, 2018

@serhiy-storchaka
Copy link
Member Author

The failure on VSTS: Linux-PR-Coverage seems is not related.

@@ -116,6 +116,11 @@ sys_breakpointhook(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyOb
/* The breakpoint is explicitly no-op'd. */
Py_RETURN_NONE;
}
envar = _PyMem_RawStrdup(envar);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gosh, I'm really becoming uncomfortable with all the undocumented, internal, underscored functions. It makes it much harder to understand CPython's implementation since now I have to go read the source for _PyMem_RawStrdup. This isn't the only case of it, and I know we can't fix that in this PR, but I do think we need to do better to document the private C API.

I would suggest adding a comment above this explaining the POSIX semantics, so that a future reader will understand why a copy is being made.

@@ -145,11 +152,13 @@ sys_breakpointhook(PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyOb
Py_DECREF(fromlist);

if (module == NULL) {
PyMem_RawFree(envar);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can break error reporting because of this code in the error: section:

    int status = PyErr_WarnFormat(
        PyExc_RuntimeWarning, 0,
        "Ignoring unimportable $PYTHONBREAKPOINT: \"%s\"", envar);

@bedevere-bot
Copy link

When you're done making the requested changes, leave the comment: I have made the requested changes; please review again.

@serhiy-storchaka serhiy-storchaka force-pushed the breakpointhook-getenv branch from d267adb to f775af3 Compare July 9, 2018 18:10
@serhiy-storchaka serhiy-storchaka merged commit f60bf0e into python:master Jul 9, 2018
@miss-islington
Copy link
Contributor

Thanks @serhiy-storchaka for the PR 🌮🎉.. I'm working now to backport this PR to: 3.7.
🐍🍒⛏🤖

@serhiy-storchaka serhiy-storchaka deleted the breakpointhook-getenv branch July 9, 2018 18:46
@bedevere-bot
Copy link

GH-8206 is a backport of this pull request to the 3.7 branch.

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Jul 9, 2018
…onGH-8194)

(cherry picked from commit f60bf0e)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
@serhiy-storchaka
Copy link
Member Author

Thank you for your review @warsaw!

miss-islington added a commit that referenced this pull request Jul 9, 2018
)

(cherry picked from commit f60bf0e)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip news type-bug An unexpected behavior, bug, or error
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants