10000 gh-103092: Isolate _tkinter (WIP) by erlend-aasland · Pull Request #103108 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-103092: Isolate _tkinter (WIP) #103108

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

Closed
wants to merge 18 commits into from
Closed
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
Make space for module state
  • Loading branch information
erlend-aasland committed Mar 29, 2023
commit ef328cf727740adc092118f5cda48c00d4888b38
13 changes: 4 additions & 9 deletions Modules/_tkinter.c
Original file line number Diff line number Diff line change
Expand Up @@ -3280,15 +3280,10 @@ DisableEventHook(void)


static struct PyModuleDef _tkintermodule = {
PyModuleDef_HEAD_INIT,
"_tkinter",
NULL,
-1,
moduleMethods,
NULL,
NULL,
NULL,
NULL
.m_base = PyModuleDef_HEAD_INIT,
.m_name = "_tkinter",
.m_size = sizeof(module_state),
.m_methods = moduleMethods,
};

PyMODINIT_FUNC
Expand Down
0