Re: Looking for an appropriate encoding standard that supports all languages

2010-08-23 Thread Ben Finney
Ata Jafari writes: > Finally I did it. > I was doing some stupid mistakes. > Thanks alot. For the benefit of future readers of this thread, could you please describe what the errors were and how you discovered them? Also what the eventual solution was. -- \ “When I get new information,

Re: Looking for an appropriate encoding standard that supports all languages

2010-08-23 Thread Ata Jafari
On Aug 20, 10:04 pm, Thomas Jollans wrote: > On Thursday 19 August 2010, it occurred to ata.jaf to exclaim: > > > > > On Aug 17, 11:55 pm, Thomas Jollans wrote: > > > On Tuesday 17 August 2010, it occurred to ata.jaf to exclaim: > > > > I am developing a little program in Mac with wxPython. > > >

Re: Looking for an appropriate encoding standard that supports all languages

2010-08-20 Thread Thomas Jollans
On Thursday 19 August 2010, it occurred to ata.jaf to exclaim: > On Aug 17, 11:55 pm, Thomas Jollans wrote: > > On Tuesday 17 August 2010, it occurred to ata.jaf to exclaim: > > > I am developing a little program in Mac with wxPython. > > > But I have problems with the characters that are not in A

Re: Looking for an appropriate encoding standard that supports all languages

2010-08-20 Thread John Nagle
On 8/20/2010 9:07 AM, Rami Chowdhury wrote: On Fri, Aug 20, 2010 at 21:02, ata.jaf wrote: On Aug 19, 11:48 am, Steven D'Aprano wrote: On Thu, 19 Aug 2010 01:29:51 -0700, ata.jaf wrote: On Aug 17, 11:55 pm, Thomas Jollans wrote: Yes I have a source code encoding line. Here it is: # -*- cod

Re: Looking for an appropriate encoding standard that supports all languages

2010-08-20 Thread Rami Chowdhury
On Fri, Aug 20, 2010 at 21:02, ata.jaf wrote: > On Aug 19, 11:48 am, Steven D'Aprano t...@cybersource.com.au> wrote: >> On Thu, 19 Aug 2010 01:29:51 -0700, ata.jaf wrote: >> > On Aug 17, 11:55 pm, Thomas Jollans wrote: >> >> On Tuesday 17 August 2010, it occurred to ata.jaf to exclaim: >> >> >>

Re: Looking for an appropriate encoding standard that supports all languages

2010-08-20 Thread ata.jaf
On Aug 19, 11:48 am, Steven D'Aprano wrote: > On Thu, 19 Aug 2010 01:29:51 -0700, ata.jaf wrote: > > On Aug 17, 11:55 pm, Thomas Jollans wrote: > >> On Tuesday 17 August 2010, it occurred to ata.jaf to exclaim: > > >> > I am developing a little program in Mac with wxPython. But I have > >> > prob

Re: Looking for an appropriate encoding standard that supports all languages

2010-08-19 Thread Martin v. Loewis
> I write a line of strings in the source code and I want my program to > show that as an output on GUI. And this line of strings includes a > character like "ü". Make sure you use Unicode literals in your source code, i.e. u"ü". HTH, Martin -- http://mail.python.org/mailman/listinfo/python-list

Re: Looking for an appropriate encoding standard that supports all languages

2010-08-19 Thread Steven D'Aprano
On Thu, 19 Aug 2010 01:29:51 -0700, ata.jaf wrote: > On Aug 17, 11:55 pm, Thomas Jollans wrote: >> On Tuesday 17 August 2010, it occurred to ata.jaf to exclaim: >> >> > I am developing a little program in Mac with wxPython. But I have >> > problems with the characters that are not in ASCII. Like

Re: Looking for an appropriate encoding standard that supports all languages

2010-08-19 Thread ata.jaf
On Aug 17, 11:55 pm, Thomas Jollans wrote: > On Tuesday 17 August 2010, it occurred to ata.jaf to exclaim: > > > I am developing a little program in Mac with wxPython. > > But I have problems with the characters that are not in ASCII. Like > > some special characters in French or Turkish. > > So I

Re: Looking for an appropriate encoding standard that supports all languages

2010-08-17 Thread Thomas Jollans
On Tuesday 17 August 2010, it occurred to ata.jaf to exclaim: > I am developing a little program in Mac with wxPython. > But I have problems with the characters that are not in ASCII. Like > some special characters in French or Turkish. > So I am looking for a way to solve this. Like an encoding st

Looking for an appropriate encoding standard that supports all languages

2010-08-17 Thread ata.jaf
I am developing a little program in Mac with wxPython. But I have problems with the characters that are not in ASCII. Like some special characters in French or Turkish. So I am looking for a way to solve this. Like an encoding standard that supports all languages. Or some other way. Thanks Ata Jaf