[issue5911] built-in compile() should take encoding option.

2010-08-24 Thread Benjamin Peterson
Benjamin Peterson added the comment: I'll close this then. -- resolution: -> rejected status: open -> closed ___ Python tracker ___ _

[issue5911] built-in compile() should take encoding option.

2010-08-24 Thread INADA Naoki
INADA Naoki added the comment: This problem is not heavy on Python 3. Because Python 3's byte string can't contain non-ASCII string directory. So passing unicode string to the compile() is good enough for all cases I can imagine. -- ___ Python track

[issue5911] built-in compile() should take encoding option.

2010-08-24 Thread Mark Lawrence
Mark Lawrence added the comment: Anyone interested in producing an updated patch? -- nosy: +BreamoreBoy versions: +Python 3.2 -Python 2.7 ___ Python tracker ___ _

[issue5911] built-in compile() should take encoding option.

2009-11-24 Thread Trundle
Changes by Trundle : -- nosy: +Trundle ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/ma

[issue5911] built-in compile() should take encoding option.

2009-10-12 Thread Benjamin Peterson
Benjamin Peterson added the comment: The patch as it currently stands is unacceptable because it changes public APIs. -- nosy: +benjamin.peterson ___ Python tracker ___ _

[issue5911] built-in compile() should take encoding option.

2009-10-12 Thread Facundo Batista
Changes by Facundo Batista : -- nosy: +facundobatista ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue5911] built-in compile() should take encoding option.

2009-10-03 Thread Naoki INADA
Naoki INADA added the comment: add sample implementation. -- keywords: +patch Added file: http://bugs.python.org/file15030/compile_with_encoding.patch ___ Python tracker ___

[issue5911] built-in compile() should take encoding option.

2009-05-08 Thread Daniel Diniz
Changes by Daniel Diniz : -- components: +Interpreter Core, Unicode -None priority: -> normal stage: -> test needed versions: -Python 2.6 ___ Python tracker ___ ___

[issue5911] built-in compile() should take encoding option.

2009-05-02 Thread Naoki INADA
New submission from Naoki INADA : The built-in compile() expects source is encoded in utf-8. This behavior make it harder to implement alternative shell like IDLE and IPython. (http://bugs.python.org/issue1542677 and https://bugs.launchpad.net/ipython/+bug/339642 are related bugs.) Below is curr