Kaydet (Commit) 1d519e46 authored tarafından Martin v. Löwis's avatar Martin v. Löwis

unconst.

üst 1175c43a
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment