This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Constantine Ketskalo
Recipients Constantine Ketskalo, louielu, serhiy.storchaka, terry.reedy
Date 2017-08-28.04:05:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1503893109.13.0.797484919812.issue31244@psf.upfronthosting.co.za>
In-reply-to
Content
Impossible... Yea, right...
Will documenting it help to solve it?
If that's impossible, then how do other programs deal with it? What does make Python so special?
I still don't see anything impossible. If other programs can do it but Python IDLE can't do it for now, then it's called either "hard" or "I don't want to do it", but not "impossible".

First of all I would try to find out how does cyrillic work with other programs(sorry, I don't know that). Probably their approach to this situation could be just copied to Python IDLE behaviour.

Japanese wan't help you with cyrillic. This ticket is about cyrillic!!!

ascii is not the only encoding, that exists. Could it be as possible solution to use unicode incoding with Python when it comes down to hotkeys?

If there is something that makes Japaneese and cyrillic languages incompatible with each other to use hotkeys, well, then you could just add option to choose which language is preferable to user (either in installed program, or during installatioin).

Windows command prompt doesn't support cyrillic by default, but there is a code in C, that makes it work with cyrillic input and output. Python was written on C, so I'm sure it could be helpful even if it doesn't work directly.
Here is this code for C/C++:
`
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
setlocale(0, "Ukrainian");
`
History
Date User Action Args
2017-08-28 04:05:09Constantine Ketskalosetrecipients: + Constantine Ketskalo, terry.reedy, serhiy.storchaka, louielu
2017-08-28 04:05:09Constantine Ketskalosetmessageid: <1503893109.13.0.797484919812.issue31244@psf.upfronthosting.co.za>
2017-08-28 04:05:09Constantine Ketskalolinkissue31244 messages
2017-08-28 04:05:08Constantine Ketskalocreate