This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author lemburg
Recipients ixokai, lemburg, ronaldoussoren
Date 2010-10-20.21:47:40
SpamBayes Score 3.6855337e-08
Marked as misclassified No
Message-id <4CBF637A.3000204@egenix.com>
In-reply-to <A0153B5D-DEEC-4B14-8F88-34CB7A1E604F@mac.com>
Content
Ronald Oussoren wrote:
> 
> Ronald Oussoren <ronaldoussoren@mac.com> added the comment:
> 
> This patch solves the immediate failure:
> 
> Index: Lib/locale.py
> ===================================================================
> --- Lib/locale.py	(revision 85743)
> +++ Lib/locale.py	(working copy)
> @@ -396,6 +396,9 @@
>          else:
>              encoding = defenc
>          #print 'found encoding %r' % encoding
> +        if sys.platform == 'darwin' and encoding == 'UTF8':
> +            encoding = 'UTF-8'
> +
>          if encoding:
>              return langname + '.' + encoding
>          else:
> 
> I'm not happy about hardcoding this specific exception though, there should be a better solution than this.

Could you tell me the values of localename, code, langname and encoding
at that step in the process ?

We may need to add an locale_encoding_alias from 'UTF8' to 'UTF-8',
since the version with the hyphen is what the C lib uses.
History
Date User Action Args
2010-10-20 21:47:46lemburgsetrecipients: + lemburg, ixokai, ronaldoussoren
2010-10-20 21:47:40lemburglinkissue10154 messages
2010-10-20 21:47:40lemburgcreate