[Python-checkins] CVS: python/dist/src/Python bltinmodule.c,2.209,2.210

Fredrik Lundh effbot@users.sourceforge.net
Tue, 26 Jun 2001 10:46:12 -0700


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

Modified Files:
	bltinmodule.c 
Log Message:


experimental UCS-4 support: don't assume that MS_WIN32 implies
HAVE_USABLE_WCHAR_T

Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.209
retrieving revision 2.210
diff -C2 -r2.209 -r2.210
*** bltinmodule.c	2001/05/28 22:30:08	2.209
--- bltinmodule.c	2001/06/26 17:46:10	2.210
***************
*** 17,21 ****
     Can remain NULL for all platforms that don't have such a concept
  */
! #ifdef MS_WIN32
  const char *Py_FileSystemDefaultEncoding = "mbcs";
  #else
--- 17,21 ----
     Can remain NULL for all platforms that don't have such a concept
  */
! #if defined(MS_WIN32) && defined(HAVE_USABLE_WCHAR_T)
  const char *Py_FileSystemDefaultEncoding = "mbcs";
  #else