Re: [Python-Dev] Adding examples to PEP 263

2005-11-04 Thread Steve Holden
M.-A. Lemburg wrote: > Fredrik Lundh wrote: > >>the runtime warning you get when you use non-ascii characters in >>python source code points the poor user to this page: >> >>http://www.python.org/peps/pep-0263.html >> >>which tells the user to add a >> >># -*- coding: -*- >> >>to the sour

Re: [Python-Dev] Adding examples to PEP 263

2005-11-04 Thread M.-A. Lemburg
Fredrik Lundh wrote: > the runtime warning you get when you use non-ascii characters in > python source code points the poor user to this page: > > http://www.python.org/peps/pep-0263.html > > which tells the user to add a > > # -*- coding: -*- > > to the source, and then provides a mo

[Python-Dev] Adding examples to PEP 263

2005-11-04 Thread Fredrik Lundh
the runtime warning you get when you use non-ascii characters in python source code points the poor user to this page: http://www.python.org/peps/pep-0263.html which tells the user to add a # -*- coding: -*- to the source, and then provides a more detailed syntax description as a RE pa