[Python-checkins] CVS: python/dist/src/Modules selectmodule.c,2.29,2.30

Guido van Rossum guido@cnri.reston.va.us
Fri, 14 Jan 2000 11:33:11 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Modules
In directory eric:/projects/python/develop/guido/src/Modules

Modified Files:
	selectmodule.c 
Log Message:
According to Ron Bickers, and with apparent approval of Chris
Herborth, the code in list2set() that sets max unconditionally to 0
should not be used on BeOS.  So be it.  Anybody using BeOS, please
test!


Index: selectmodule.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Modules/selectmodule.c,v
retrieving revision 2.29
retrieving revision 2.30
diff -C2 -r2.29 -r2.30
*** selectmodule.c	1999/08/27 20:39:37	2.29
--- selectmodule.c	2000/01/14 16:33:09	2.30
***************
*** 144,148 ****
  			goto finally;
  		}
! #if defined(_MSC_VER) || defined(__BEOS__)
  		max = 0;		     /* not used for Win32 */
  #else  /* !_MSC_VER */
--- 144,148 ----
  			goto finally;
  		}
! #if defined(_MSC_VER)
  		max = 0;		     /* not used for Win32 */
  #else  /* !_MSC_VER */