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
Prev Previous commit
Next Next commit
add comment
  • Loading branch information
kumaraditya303 committed Jan 28, 2022
commit 3d175a7c6f6db2c88703ac9fd107f38fc73d38c0
2 changes: 1 addition & 1 deletion Include/cpython/import.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ struct _frozen {
const char *name; /* ASCII encoded string */
const unsigned char *code;
int size;
PyObject *(*get_code)(void);
PyObject *(*get_code)(void); /* Returns strong ref */
};

/* Embedding apps may change this pointer to point to their favorite
Expand Down
0