]> granicus.if.org Git - python/commitdiff
DeleteTimerHandler was accidentally #ifdef'ed out for macintosh with
authorGuido van Rossum <guido@python.org>
Mon, 18 Aug 1997 15:28:52 +0000 (15:28 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 18 Aug 1997 15:28:52 +0000 (15:28 +0000)
Tk 8.0; this was a mistake.

Modules/_tkinter.c

index ec62b93145600e6b076863865302eb748a6b53de..e0f207b8e3edadd9c853708d5891f1e8cf702d1e 100644 (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)