[Python-checkins] CVS: python/dist/src/Modules timemodule.c,2.107,2.108

Martin v. L?wis loewis@users.sourceforge.net
Tue, 06 Mar 2001 04:12:04 -0800


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

Modified Files:
	timemodule.c 
Log Message:
Use Py_CHARMASK for ctype macros. Fixes bug #232787.


Index: timemodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/timemodule.c,v
retrieving revision 2.107
retrieving revision 2.108
diff -C2 -r2.107 -r2.108
*** timemodule.c	2001/03/02 06:53:29	2.107
--- timemodule.c	2001/03/06 12:12:02	2.108
***************
*** 398,402 ****
  		return NULL;
  	}
! 	while (*s && isspace(*s))
  		s++;
  	if (*s) {
--- 398,402 ----
  		return NULL;
  	}
! 	while (*s && isspace(Py_CHARMASK(*s)))
  		s++;
  	if (*s) {