]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Backport of Jack's checkin 1.117:
authorThomas Wouters <thomas@python.org>
Thu, 19 Jul 2001 09:43:12 +0000 (09:43 +0000)
committerThomas Wouters <thomas@python.org>
Thu, 19 Jul 2001 09:43:12 +0000 (09:43 +0000)
File handlers don't work on the mac, so don't pretend they do.

Modules/_tkinter.c

index 86b5c220e319dc796bd1590b828b33bac2faa6bf..a279713a1c501117a68bfa53a2667b54f2cfdbd5 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