From: Jack Jansen Date: Mon, 16 Jul 2001 19:32:52 +0000 (+0000) Subject: File handlers don't work on the mac, so don't pretend they do. I guess this is a... X-Git-Tag: v2.2a3~1131 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=84c10b13bbeaccf154ad42aaa95e9d67e45ca821;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index ceac18bbb8fb..f20a1effdf2d 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