summaryrefslogtreecommitdiff
path: root/Modules/_tkinter.c
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-07 12:30:51 +0300
committerAndrew Svetlov <andrew.svetlov@gmail.com>2012-10-07 12:30:51 +0300
commit62416d1db7c0458cb07c87063df6451d4adce66e (patch)
treef2d5e34272f09611806588a4875f6c28babb480c /Modules/_tkinter.c
parent73898f501e6d1b35961a29dacc62be61c4868bf4 (diff)
downloadcpython-62416d1db7c0458cb07c87063df6451d4adce66e.tar.gz
Utilize PyModule_Add{IntConstant,StringConstant,Object} in _tkinter.
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r--Modules/_tkinter.c38
1 files changed, 19 insertions, 19 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index cad87b655d..f4c7ad6dea 100644
--- a/Modules/_tkinter.c
+++ b/Modules/_tkinter.c
@@ -2895,7 +2895,7 @@ static struct PyModuleDef _tkintermodule = {
PyMODINIT_FUNC
PyInit__tkinter(void)
{
- PyObject *m, *d, *uexe, *cexe;
+ PyObject *m, *uexe, *cexe;
if (PyType_Ready(&Tkapp_Type) < 0)
return NULL;
@@ -2908,32 +2908,32 @@ PyInit__tkinter(void)
if (m == NULL)
return NULL;
- d = PyModule_GetDict(m);
Tkinter_TclError = PyErr_NewException("_tkinter.TclError", NULL, NULL);
- PyDict_SetItemString(d, "TclError", Tkinter_TclError);
-
- ins_long(d, "READABLE", TCL_READABLE);
- ins_long(d, "WRITABLE", TCL_WRITABLE);
- ins_long(d, "EXCEPTION", TCL_EXCEPTION);
- ins_long(d, "WINDOW_EVENTS", TCL_WINDOW_EVENTS);
- ins_long(d, "FILE_EVENTS", TCL_FILE_EVENTS);
- ins_long(d, "TIMER_EVENTS", TCL_TIMER_EVENTS);
- ins_long(d, "IDLE_EVENTS", TCL_IDLE_EVENTS);
- ins_long(d, "ALL_EVENTS", TCL_ALL_EVENTS);
- ins_long(d, "DONT_WAIT", TCL_DONT_WAIT);
- ins_string(d, "TK_VERSION", TK_VERSION);
- ins_string(d, "TCL_VERSION", TCL_VERSION);
-
- PyDict_SetItemString(d, "TkappType", (PyObject *)&Tkapp_Type);
+ Py_INCREF(Tkinter_TclError);
+ PyModule_AddObject(m, "TclError", Tkinter_TclError);
+
+ PyModule_AddIntConstant(m, "READABLE", TCL_READABLE);
+ PyModule_AddIntConstant(m, "WRITABLE", TCL_WRITABLE);
+ PyModule_AddIntConstant(m, "EXCEPTION", TCL_EXCEPTION);
+ PyModule_AddIntConstant(m, "WINDOW_EVENTS", TCL_WINDOW_EVENTS);
+ PyModule_AddIntConstant(m, "FILE_EVENTS", TCL_FILE_EVENTS);
+ PyModule_AddIntConstant(m, "TIMER_EVENTS", TCL_TIMER_EVENTS);
+ PyModule_AddIntConstant(m, "IDLE_EVENTS", TCL_IDLE_EVENTS);
+ PyModule_AddIntConstant(m, "ALL_EVENTS", TCL_ALL_EVENTS);
+ PyModule_AddIntConstant(m, "DONT_WAIT", TCL_DONT_WAIT);
+ PyModule_AddStringConstant(m, "TK_VERSION", TK_VERSION);
+ PyModule_AddStringConstant(m, "TCL_VERSION", TCL_VERSION);
+
+ PyModule_AddObject(m, "TkappType", (PyObject *)&Tkapp_Type);
if (PyType_Ready(&Tktt_Type) < 0) {
Py_DECREF(m);
return NULL;
}
- PyDict_SetItemString(d, "TkttType", (PyObject *)&Tktt_Type);
+ PyModule_AddObject(m, "TkttType", (PyObject *)&Tktt_Type);
Py_TYPE(&PyTclObject_Type) = &PyType_Type;
- PyDict_SetItemString(d, "Tcl_Obj", (PyObject *)&PyTclObject_Type);
+ PyModule_AddObject(m, "Tcl_Obj", (PyObject *)&PyTclObject_Type);
#ifdef TK_AQUA
/* Tk_MacOSXSetupTkNotifier must be called before Tcl's subsystems