[issue7768] raw_input should encode unicode prompt with std.stdout.encoding.

2010-10-04 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: annoying stuff, indeed... $ python -c 'print uLa cl\xe9: ' La clé: $ python -c 'raw_input(uLa cl\xe9: )' Traceback (most recent call last): File string, line 1, in module UnicodeEncodeError: 'ascii' codec can't encode character

[issue7768] raw_input should encode unicode prompt with std.stdout.encoding.

2010-06-08 Thread INADA Naoki
INADA Naoki songofaca...@gmail.com added the comment: I agree to close this bug without fix. I hope that Python3 will be mainstream soon. -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7768

[issue7768] raw_input should encode unicode prompt with std.stdout.encoding.

2010-06-08 Thread Benjamin Peterson
Changes by Benjamin Peterson benja...@python.org: -- resolution: - wont fix status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7768 ___

[issue7768] raw_input should encode unicode prompt with std.stdout.encoding.

2010-06-08 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I hope that Python3 will be mainstream soon. What do you mean by mainstream? Python3 is available in Ubuntu (since Karmic), Fedora 13, Mandriva 2010.0, Gentoo, Debian (only Sid for now), ... --

[issue7768] raw_input should encode unicode prompt with std.stdout.encoding.

2010-06-08 Thread INADA Naoki
INADA Naoki songofaca...@gmail.com added the comment: What do you mean by mainstream? Python3 is available in Ubuntu (since Karmic), Fedora 13, Mandriva 2010.0, Gentoo, Debian (only Sid for now), ... It means most of Pythonista uses Python3 rather than Python2 and most of libraries supports

[issue7768] raw_input should encode unicode prompt with std.stdout.encoding.

2010-05-21 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: The bug is fixed in Python3. I would like to say that you should use Python3 (which has a much better unicode support) instead of Python2 to get such feature, and that this issue should be closed (as wontfix). -- nosy:

[issue7768] raw_input should encode unicode prompt with std.stdout.encoding.

2010-05-21 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: and that this issue should be closed (as wontfix). ... because this issue has no patch and we are close to 2.7rc1 (and 2.7 should be the last major version of the 3.x branch). -- ___

[issue7768] raw_input should encode unicode prompt with std.stdout.encoding.

2010-01-24 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: I agree that would be nice, but it's usefulness would also be limited by the fact that raw_input always returns a normal string. -- nosy: +benjamin.peterson priority: - normal ___ Python

[issue7768] raw_input should encode unicode prompt with std.stdout.encoding.

2010-01-23 Thread Naoki INADA
New submission from Naoki INADA songofaca...@gmail.com: raw_input and input should take unicode prompt and encode with sys.stdout.encoding like print or input in py3k. u = uあいう print u あいう x = raw_input(u) Traceback (most recent call last): File stdin, line 1, in module