[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 u'\xe9' in position 5: 
ordinal not in range(128)

--
nosy: +flox

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7768
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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), ...

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7768
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 Python3.

Currently, many new Pythonista starts with Python2 because libraries
they want support only it, and are suffered by UnicodeError.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7768
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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: +haypo

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7768
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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).

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7768
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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 tracker rep...@bugs.python.org
http://bugs.python.org/issue7768
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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
UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-2: 
ordinal not in range(128)
 import sys
 sys.stdout.encoding
'cp932'

--
components: IO, Unicode
messages: 98208
nosy: naoki
severity: normal
status: open
title: raw_input should encode unicode prompt with std.stdout.encoding.
versions: Python 2.6, Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue7768
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com