projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1175c43
)
unconst.
author
Martin v. Löwis
<martin@v.loewis.de>
Mon, 27 Feb 2006 23:10:11 +0000
(23:10 +0000)
committer
Martin v. Löwis
<martin@v.loewis.de>
Mon, 27 Feb 2006 23:10:11 +0000
(23:10 +0000)
Modules/_tkinter.c
patch
|
blob
|
history
diff --git
a/Modules/_tkinter.c
b/Modules/_tkinter.c
index 70cd670b126f9266d5dba20e157e41187f102b9c..03f145327912890328847ad1f575ec096130ba58 100644
(file)
--- a/
Modules/_tkinter.c
+++ b/
Modules/_tkinter.c
@@
-2403,7
+2403,7
@@
Tktt_Repr(PyObject *self)
}
static PyObject *
-Tktt_GetAttr(PyObject *self, c
onst c
har *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, c
onst c
har *name)
+Tkapp_GetAttr(PyObject *self, char *name)
{
return Py_FindMethod(Tkapp_methods, self, name);
}