summaryrefslogtreecommitdiffstats
path: root/Modules/_tkinter.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-18 15:28:52 (GMT)
committerGuido van Rossum <guido@python.org>1997-08-18 15:28:52 (GMT)
commitbad3c013d29b7905597204ee27924a36c6653f4d (patch)
tree3f62e1e610ee019d2f1d74655eaf028956be6d81 /Modules/_tkinter.c
parente229d8636dd42e3979afe1d5fc59890a32b9ad42 (diff)
downloadcpython-bad3c013d29b7905597204ee27924a36c6653f4d.zip
cpython-bad3c013d29b7905597204ee27924a36c6653f4d.tar.gz
cpython-bad3c013d29b7905597204ee27924a36c6653f4d.tar.bz2
DeleteTimerHandler was accidentally #ifdef'ed out for macintosh with
Tk 8.0; this was a mistake.
Diffstat (limited to 'Modules/_tkinter.c')
-rw-r--r--Modules/_tkinter.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c
index ec62b93..e0f207b 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)