Re: Interpreting Unicode scripts

2006-02-05 Thread Keith MacDonald
That document did help, thanks, although I was initially disconcerted to see that it's written in the future tense. Anyway, it works with Python 2.4. Keith MacDonald "Fredrik Lundh" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > reading PEP 263 might help: > >http://www.py

Re: Interpreting Unicode scripts

2006-02-05 Thread Fredrik Lundh
Keith MacDonald wrote: > I am considering embedding Python in a C++ application, which works > internally in UTF-16. The only API I can find for running scripts is > PyRun_SimpleString(const char*). Does that mean that Python is unable to > execute scripts containing characters from more than on

Interpreting Unicode scripts

2006-02-05 Thread Keith MacDonald
Hello, I am considering embedding Python in a C++ application, which works internally in UTF-16. The only API I can find for running scripts is PyRun_SimpleString(const char*). Does that mean that Python is unable to execute scripts containing characters from more than one code page? Thanks,