From 1d519e4625ad5ea910617413687f13b765f32e99 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Mon, 27 Feb 2006 23:10:11 +0000 Subject: unconst. --- Modules/_tkinter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 70cd670..03f1453 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -2403,7 +2403,7 @@ Tktt_Repr(PyObject *self) } static PyObject * -Tktt_GetAttr(PyObject *self, const char *name) +Tktt_GetAttr(PyObject *self, char *name) { return Py_FindMethod(Tktt_methods, self, name); } @@ -2734,7 +2734,7 @@ Tkapp_Dealloc(PyObject *self) } static PyObject * -Tkapp_GetAttr(PyObject *self, const char *name) +Tkapp_GetAttr(PyObject *self, char *name) { return Py_FindMethod(Tkapp_methods, self, name); } -- cgit v0.12