8000 gh-117142: ctypes: Unify meta tp slot functions by neonene · Pull Request #117143 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-117142: ctypes: Unify meta tp slot functions #117143

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 11 commits into from
Apr 1, 2024
Prev Previous commit
Next Next commit
add missing static
  • Loading branch information
neonene committed Mar 22, 2024
commit 0cc59061e225b94c17df1e376b4db733590c9e1e
2 changes: 1 addition & 1 deletion Modules/_ctypes/_ctypes.c
Original file line number Diff line number Diff line change
Expand Up @@ -5740,7 +5740,7 @@ static PyModuleDef_Slot module_slots[] = {
{0, NULL}
};

struct PyModuleDef _ctypesmodule = {
static struct PyModuleDef _ctypesmodule = {
PyModuleDef_HEAD_INIT,
.m_name = "_ctypes",
.m_doc = _ctypes__doc__,
Expand Down
0