mirror of
https://github.com/python/cpython.git
synced 2024-11-25 02:44:06 +08:00
unconst.
This commit is contained in:
parent
1175c43a12
commit
1d519e4625
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user