[issue15809] 2.7 IDLE console uses incorrect encoding.

2018-10-31 Thread Pradyun Gedam
Change by Pradyun Gedam : -- nosy: -pradyunsg ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue15809] 2.7 IDLE console uses incorrect encoding.

2016-01-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: It would be nice to add configuration option for IDLE Shell encoding and highlight non-encodable characters in Shell and Editor. But this feature is needed mainly for 2.7. -- resolution: -> fixed stage: patch review -> resolved status: open -> close

[issue15809] 2.7 IDLE console uses incorrect encoding.

2016-01-19 Thread Terry J. Reedy
Terry J. Reedy added the comment: Serhiy, unless you are planning to do something more, please close this. The extended extended maintenance period for 2.7 is mainly for build and security issues, and I don't expect to do any more 2.7-only patches. --

[issue15809] 2.7 IDLE console uses incorrect encoding.

2016-01-19 Thread Ned Deily
Changes by Ned Deily : -- nosy: -ned.deily ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python

[issue15809] 2.7 IDLE console uses incorrect encoding.

2016-01-19 Thread R. David Murray
Changes by R. David Murray : -- nosy: -r.david.murray ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://

[issue15809] 2.7 IDLE console uses incorrect encoding.

2016-01-19 Thread fireattack
fireattack added the comment: Any update on this? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue15809] 2.7 IDLE console uses incorrect encoding.

2015-08-16 Thread 烈之斩
Changes by Benjamin Peng (烈之斩) : -- nosy: +Benjamin Peng (烈之斩) ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15809] 2.7 IDLE console uses incorrect encoding.

2015-05-17 Thread Roundup Robot
Roundup Robot added the comment: New changeset 247f003b42ea by Serhiy Storchaka in branch '2.7': Issue #15809: IDLE shell now uses locale encoding instead of Latin1 for https://hg.python.org/cpython/rev/247f003b42ea -- nosy: +python-dev ___ Python tra

[issue15809] 2.7 IDLE console uses incorrect encoding.

2015-04-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: #19625, with a bit of discussion, was closed as a duplicate of this issue. -- ___ Python tracker ___ ___

[issue15809] 2.7 IDLE console uses incorrect encoding.

2014-05-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Only ufix_utf8 (with the utf-8 encoding of stdin/stdout/stderr) and ufix_locale (with hacked tracebacks) make sense. -- ___ Python tracker __

[issue15809] 2.7 IDLE console uses incorrect encoding.

2014-05-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: I wonder if we should consider extracting the body of if isinstance(source, types.UnicodeType): as a function, call it ufix_latin1; add one or more alterntives, ufix_utf8, ufix_locale, ufix_irdb(?); keep ufix_latin1 as default; but switch to an alternat

[issue15809] 2.7 IDLE console uses incorrect encoding.

2014-05-23 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: When someone reads file in locale encoding (either as str or unicode in 2.7), he gets printable result. When someone lists directory, he gets printable result (str or unicode). When someone enter string literal (either str or unicode) in interactive mode, he

[issue15809] 2.7 IDLE console uses incorrect encoding.

2014-05-15 Thread Martin v . Löwis
Changes by Martin v. Löwis : -- nosy: -loewis ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue15809] 2.7 IDLE console uses incorrect encoding.

2014-05-15 Thread Terry J. Reedy
Terry J. Reedy added the comment: Idle 3.x has Martin's patch, except that the 'if' clause is merely commented out rather than removed. (Perhaps someone wanted to test the removal first. It should now be deleted.) My 2.7 Idle has Default Source Encoding ... [x] None. Since there is nothing f

[issue15809] 2.7 IDLE console uses incorrect encoding.

2014-05-15 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Alternative solution is to force UTF-8 in IDLE console. But I think this will be more surprising, especially for Windows users. -- ___ Python tracker ___

[issue15809] 2.7 IDLE console uses incorrect encoding.

2014-05-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: It took me awhile to re-recognize Это из консоли: as 'made in konsole'. I agree that the discrepancy between Idle shell and console is a bug relative to a general goal of having them work as nearly the same as possible and sensible. > This bug is critical for