diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-08 17:46:55 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2016-05-08 17:46:55 (GMT) |
commit | dea76376cb8fc2c255438e9708f492a25a5f2759 (patch) | |
tree | 0c89f86a7b8b5f1ab1172194ef66e6adb7bd2e66 /Modules/_tkinter.c | |
parent | 1ce738e08f147beb724f22a9411724a955cd418d (diff) | |
parent | e3f1b0911e02f5108b90b9b25417a448a423da40 (diff) | |
download | cpython-dea76376cb8fc2c255438e9708f492a25a5f2759.zip cpython-dea76376cb8fc2c255438e9708f492a25a5f2759.tar.gz cpython-dea76376cb8fc2c255438e9708f492a25a5f2759.tar.bz2 |
Issue #23815: Fixed crashes related to directly created instances of types in
_tkinter and curses.panel modules.
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r-- | Modules/_tkinter.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index a4f0042..c4e6b95 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -3544,6 +3544,7 @@ PyInit__tkinter(void) Py_DECREF(m); return NULL; } + ((PyTypeObject *)o)->tp_new = NULL; if (PyModule_AddObject(m, "TkappType", o)) { Py_DECREF(o); Py_DECREF(m); @@ -3556,6 +3557,7 @@ PyInit__tkinter(void) Py_DECREF(m); return NULL; } + ((PyTypeObject *)o)->tp_new = NULL; if (PyModule_AddObject(m, "TkttType", o)) { Py_DECREF(o); Py_DECREF(m); @@ -3568,6 +3570,7 @@ PyInit__tkinter(void) Py_DECREF(m); return NULL; } + ((PyTypeObject *)o)->tp_new = NULL; if (PyModule_AddObject(m, "Tcl_Obj", o)) { Py_DECREF(o); Py_DECREF(m); |