Re: [Python-3000] Issues about Python script encoding

2008-10-02 Thread Victor Stinner
Le Thursday 02 October 2008 22:32:43 Martin v. Löwis, vous avez écrit : > > About the coding header, IDLE doesn't read #coding: header. Here is a fix > > (use tokenize.detect_encoding): > > http://bugs.python.org/issue4008 > > Are you really sure about that? It did in the past. Try IDLE in an ASCI

Re: [Python-3000] Issues about Python script encoding

2008-10-02 Thread Martin v. Löwis
> About the coding header, IDLE doesn't read #coding: header. Here is a fix > (use > tokenize.detect_encoding): > http://bugs.python.org/issue4008 Are you really sure about that? It did in the past. Regards, Martin ___ Python-3000 mailing list Python-

[Python-3000] Issues about Python script encoding

2008-10-02 Thread Victor Stinner
Python3 traceback have bugs making debugging harder: [Py3k] line number is wrong after encoding declaration http://bugs.python.org/issue2384 PyTraceBack_Print() doesn't respect # coding: xxx header http://bugs.python.org/issue3975 Both issues has patch + testcase. -- About the coding hea