From ae92f01029341f45f82132534eba172a8c4e3e86 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 21 Aug 1996 19:03:36 +0000 Subject: Hacks to support being a Windows DLL --- Modules/_tkinter.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 566bf77..48916a5 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -1059,7 +1059,7 @@ Tktt_GetAttr (self, name) static PyTypeObject Tktt_Type = { - PyObject_HEAD_INIT (&PyType_Type) + PyObject_HEAD_INIT (NULL) 0, /*ob_size */ "tktimertoken", /*tp_name */ sizeof (TkttObject), /*tp_basicsize */ @@ -1240,7 +1240,7 @@ Tkapp_GetAttr (self, name) static PyTypeObject Tkapp_Type = { - PyObject_HEAD_INIT (&PyType_Type) + PyObject_HEAD_INIT (NULL) 0, /*ob_size */ "tkapp", /*tp_name */ sizeof (TkappObject), /*tp_basicsize */ @@ -1335,6 +1335,9 @@ init_tkinter () #endif /* WITH_READLINE */ PyObject *m, *d, *v; + Tkapp_Type.ob_type = &PyType_Type; + Tktt_Type.ob_type = &PyType_Type; + m = Py_InitModule ("_tkinter", moduleMethods); d = PyModule_GetDict (m); -- cgit v0.12