Re: Source Encoding GBK/GB2312

2005-02-25 Thread steven
Thank you All ! I am going to update ... -- http://mail.python.org/mailman/listinfo/python-list

Re: Source Encoding GBK/GB2312

2005-02-23 Thread Kent Johnson
[EMAIL PROTECTED] wrote: When I specify an source encoding such as: # -*- coding: GBK -*- or # -*- coding: GB2312 -*- as the first line of source, I got the following error: SyntaxError: 'unknown encoding: GBK' Does this mean Python does not support GBK/GB2312? What do I do? GB2312 is supported in

Re: Source Encoding GBK/GB2312

2005-02-23 Thread limodou
2.4 support gb2312, gbk, gb18030 and cjk codec. you can also move these things to 2.3. On Wed, 23 Feb 2005 22:34:02 -0600, Steve Holden <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > > When I specify an source encoding such as: > > > > # -*- coding: GBK -*- > > or > > # -*- coding: GB

Re: Source Encoding GBK/GB2312

2005-02-23 Thread Steve Holden
[EMAIL PROTECTED] wrote: When I specify an source encoding such as: # -*- coding: GBK -*- or # -*- coding: GB2312 -*- as the first line of source, I got the following error: SyntaxError: 'unknown encoding: GBK' Does this mean Python does not support GBK/GB2312? What do I do? Well, *your* Python mi

Source Encoding GBK/GB2312

2005-02-23 Thread steven
When I specify an source encoding such as: # -*- coding: GBK -*- or # -*- coding: GB2312 -*- as the first line of source, I got the following error: SyntaxError: 'unknown encoding: GBK' Does this mean Python does not support GBK/GB2312? What do I do? - narke -- http://mail.python.org/mailm