From: Thomas Wouters Date: Thu, 19 Jul 2001 09:43:12 +0000 (+0000) Subject: Backport of Jack's checkin 1.117: X-Git-Tag: v2.1.1~11 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83ac3305cfc1ac0d71551a0499005985c85c4153;p=thirdparty%2FPython%2Fcpython.git Backport of Jack's checkin 1.117: File handlers don't work on the mac, so don't pretend they do. --- diff --git a/Modules/_tkinter.c b/Modules/_tkinter.c index 86b5c220e319..a279713a1c50 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