8000 bpo-1635741: port opcode module to multi-phase init (PEP 489) by koubaa · Pull Request #22050 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

bpo-1635741: port opcode module to multi-phase init (PEP 489) #22050

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 5 commits into from
Sep 7, 2020
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
remove unneeded exec
  • Loading branch information
koubaa committed Sep 4, 2020
commit 7ff4a938bbf052bee49facc54240340dce98e673
7 changes: 0 additions & 7 deletions Modules/_opcode.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,7 @@ opcode_functions[] = {
{NULL, NULL, 0, NULL}
};

static int
_opcode_exec(PyObject *m)
{
return 0;
}

static PyModuleDef_Slot opcode_slots[] = {
Copy link
Member

Choose a reason for hiding this comment

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

This list is now empty and so became useless. Please remove it.

{Py_mod_exec, _opcode_exec},
{0, NULL}
};

Expand Down
0