DeleteTimerHandler was accidentally #ifdef'ed out for macintosh with

Tk 8.0; this was a mistake.
This commit is contained in:
Guido van Rossum 1997-08-18 15:28:52 +00:00
parent e229d8636d
commit bad3c013d2

View file

@ -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)