]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
File handlers don't work on the mac, so don't pretend they do. I guess this is a...
authorJack Jansen <jack.jansen@cwi.nl>
Mon, 16 Jul 2001 19:32:52 +0000 (19:32 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Mon, 16 Jul 2001 19:32:52 +0000 (19:32 +0000)
Modules/_tkinter.c

index ceac18bbb8fb67e286015b23ef736108ac7cd453..f20a1effdf2d2322de40f747a5cfc42b01f2e706 100644 (file)
@@ -57,7 +57,8 @@ Copyright (C) 1994 Steen Lumholt.
 #include <Menus.h>
 #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