From: Guido van Rossum Date: Mon, 18 Aug 1997 15:28:52 +0000 (+0000) Subject: DeleteTimerHandler was accidentally #ifdef'ed out for macintosh with X-Git-Tag: v1.5a4~379 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bad3c013d29b7905597204ee27924a36c6653f4d;p=python DeleteTimerHandler was accidentally #ifdef'ed out for macintosh with Tk 8.0; this was a mistake. --- diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index ec62b93145..e0f207b8e3 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -1117,8 +1117,6 @@ typedef struct } TkttObject; -/* XXXX For now... */ -#if TKMAJORMINOR < 8000 || !defined(macintosh) static PyObject * Tktt_DeleteTimerHandler(self, args) PyObject *self; @@ -1225,7 +1223,6 @@ TimerHandler(clientData) else Py_DECREF(res); } -#endif /* macintosh */ static PyObject * Tkapp_CreateTimerHandler(self, args)