bpo-36356: Fix memory leak in _asynciomodule.c during "setup.py build_ext"#16598
bpo-36356: Fix memory leak in _asynciomodule.c during "setup.py build_ext"#165981st1 merged 3 commits into
Conversation
|
I think you should add a |
Sorry, something went wrong.
|
Turns out I was incorrect about the double import. It's importing itself as part of the import process, once as "_asyncio" that then imports itself as "asyncio" gdb trace (with edited paths) below. The spec is passed in from setup.py line 529, but the _module naming convention doesn't seem out of place compared to others (_sha*, _ctypes, _decimal, etc). #0 module_init () at cpython/Modules/_asynciomodule.c:3251 |
Sorry, something went wrong.
|
Updated with a static variable to check initialization. left initialization for the inner call and return early for the outside call, although I don't think the difference would be significant. If everything looks good I can squash the previous commit since the first one is entirely reverted by the second. |
Sorry, something went wrong.
|
LGTM, but please fix the nit I highlighted. |
Sorry, something went wrong.
Co-Authored-By: Yury Selivanov <yury@edgedb.com>
|
Good catch, I've fixed the one introduced by this changeset, but grep shows 6 more instances. Would it be worth fixing them along with these changes, or leaving it as it is? |
Sorry, something went wrong.
@btharper: Which instances? In which file? |
Sorry, something went wrong.
Sorry for the lack of specificity. 6 more instances of the closing bracket being on the same line as an else/else if in the Modules/_asynciomodule.c file. I wasn't sure if it would be useful to clean up the rest of the file or just correct what was modified in this PR, though I expect not changing unrelated lines is the safest answer. Anything else for bpo-36356 would be under another PR. |
Sorry, something went wrong.
We can fix them in a separate PR. |
Sorry, something went wrong.
|
Could you please generate a NEWS entry with |
Sorry, something went wrong.
vstinner
left a comment
There was a problem hiding this comment.
LGTM.
I'm fine with merging it with new NEWS entry. It's uncommon to load a C extension twice.
Sorry, something went wrong.
(cherry picked from commit 321def8) Co-authored-by: Ben Harper <btharper1221@gmail.com>
Alright! |
Sorry, something went wrong.
The module seems to be imported twice during the build process which causes a leak. Since these objects are intended to be global for the life of the import, retain them during the second import.
The double import seems to be an artifact of the build system, and not indicative of normal use.
Multiple PRs for BPO-36356 were largely grouped under a single NEWS entry, should this continue to be skipped, or should a new note be added for the 3.9 branch?
https://bugs.python.org/issue36356