[Python-checkins] CVS: python/dist/src/Modules _tkinter.c,1.115,1.115.4.1

Thomas Wouters twouters@users.sourceforge.net
Thu, 19 Jul 2001 02:43:15 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv4028/Modules

Modified Files:
      Tag: release21-maint
	_tkinter.c 
Log Message:

Backport of Jack's checkin 1.117:

File handlers don't work on the mac, so don't pretend they do.



Index: _tkinter.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/_tkinter.c,v
retrieving revision 1.115
retrieving revision 1.115.4.1
diff -C2 -r1.115 -r1.115.4.1
*** _tkinter.c	2000/10/29 00:44:43	1.115
--- _tkinter.c	2001/07/19 09:43:12	1.115.4.1
***************
*** 58,62 ****
  #endif
  
! #if !(defined(MS_WINDOWS) || defined(__CYGWIN__))
  #define HAVE_CREATEFILEHANDLER
  #endif
--- 58,63 ----
  #endif
  
! #if !(defined(MS_WINDOWS) || defined(__CYGWIN__) || defined(macintosh))
! /* Mac has it, but it doesn't really work:-( */
  #define HAVE_CREATEFILEHANDLER
  #endif