[Python-3000] locale-aware strings ?
Guido van Rossum
guido at python.org
Fri Sep 1 19:17:39 CEST 2006
I say not at all.
On 9/1/06, Fredrik Lundh <fredrik at pythonware.com> wrote:
> today's Python supports "locale aware" 8-bit strings; e.g.
>
> >>> import locale
> >>> "והצ".isalpha()
> False
> >>> locale.setlocale(locale.LC_ALL, "sv_SE")
> 'sv_SE'
> >>> "והצ".isalpha()
> True
>
> to what extent should this be supported by Python 3000 ?
>
> </F>
>
>
>
>
>
> _______________________________________________
> Python-3000 mailing list
> Python-3000 at python.org
> http://mail.python.org/mailman/listinfo/python-3000
> Unsubscribe: http://mail.python.org/mailman/options/python-3000/guido%40python.org
>
>
>
--
--Guido van Rossum (home page: http://www.python.org/~guido/)
More information about the Python-3000
mailing list