[Python-checkins] python/dist/src/Python bltinmodule.c,2.276,2.277

Just van Rossum just@letterror.com
Mon, 10 Feb 2003 10:29:57 +0100


jvr@users.sourceforge.net wrote:

> Index: bltinmodule.c
> ===================================================================
> RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
> retrieving revision 2.276
> retrieving revision 2.277
> diff -C2 -d -r2.276 -r2.277
> *** bltinmodule.c 10 Feb 2003 08:21:07 -0000  2.276
> --- bltinmodule.c 10 Feb 2003 09:22:01 -0000  2.277
> ***************
> *** 19,22 ****
> --- 19,24 ----
>   #if defined(MS_WINDOWS) && defined(HAVE_USABLE_WCHAR_T)
>   const char *Py_FileSystemDefaultEncoding = "mbcs";
> + #elif defined(__APPLE__)
> + const char *Py_FileSystemDefaultEncoding = "utf-8";
>   #else
>   const char *Py_FileSystemDefaultEncoding = NULL; /* use default */

Whoops, this wasn't meant to be checked in as a side effect of this...
But then again, it should be ckecked in anyway, except perhaps with a
different switch. <Cue Jack>

Just