[Python-checkins] r42628 - python/trunk/Modules/_tkinter.c

martin.v.loewis python-checkins at python.org
Tue Feb 28 00:10:11 CET 2006


Author: martin.v.loewis
Date: Tue Feb 28 00:10:11 2006
New Revision: 42628

Modified:
   python/trunk/Modules/_tkinter.c
Log:
unconst.


Modified: python/trunk/Modules/_tkinter.c
==============================================================================
--- python/trunk/Modules/_tkinter.c	(original)
+++ python/trunk/Modules/_tkinter.c	Tue Feb 28 00:10:11 2006
@@ -2403,7 +2403,7 @@
 }
 
 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 @@
 }
 
 static PyObject *
-Tkapp_GetAttr(PyObject *self, const char *name)
+Tkapp_GetAttr(PyObject *self, char *name)
 {
 	return Py_FindMethod(Tkapp_methods, self, name);
 }


More information about the Python-checkins mailing list