8000 bpo-46449: use strong reference in deepfreeze modules by kumaraditya303 · Pull Request #30987 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-46449: use strong reference in deepfreeze modules #30987

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

Merged
merged 3 commits into from
Jan 28, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
use strong ref
  • Loading branch information
kumaraditya303 committed Jan 28, 2022
commit e1efa22b92747e6bef4d3345eb36a0e778e568b6
2 changes: 1 addition & 1 deletion Tools/scripts/deepfreeze.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ def generate(self, name: str, obj: object) -> str:
_Py_get_%%NAME%%_toplevel(void)
{
%%NAME%%_do_patchups();
return (PyObject *) &%%NAME%%_toplevel;
return Py_NewRef((PyObject *) &%%NAME%%_toplevel);
}
"""

Expand Down
0