From 84c10b13bbeaccf154ad42aaa95e9d67e45ca821 Mon Sep 17 00:00:00 2001 From: Jack Jansen Date: Mon, 16 Jul 2001 19:32:52 +0000 Subject: [PATCH] File handlers don't work on the mac, so don't pretend they do. I guess this is a 2.1.1 candidate, if it isn't too late for that. --- Modules/_tkinter.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index ceac18bbb8f..f20a1effdf2 100644 --- a/Modules/_tkinter.c +++ b/Modules/_tkinter.c @@ -57,7 +57,8 @@ Copyright (C) 1994 Steen Lumholt. #include #endif -#if !(defined(MS_WINDOWS) || defined(__CYGWIN__)) +#if !(defined(MS_WINDOWS) || defined(__CYGWIN__) || defined(macintosh)) +/* Mac has it, but it doesn't really work:-( */ #define HAVE_CREATEFILEHANDLER #endif