[issue14176] Fix unicode literals (for PEP 414)

2012-03-02 Thread Jean-Michel Fauth
New submission from Jean-Michel Fauth wxjmfa...@gmail.com: Now, that the PEP 414 has been accepted, I can only strongly recommend to fix the problem of unicode literals as a partial workaround. print u'abcœé€' abcé If these six characters are not rendered correctly, you shoud read: LATIN

[issue14176] Fix unicode literals (for PEP 414)

2012-03-02 Thread Benjamin Peterson
Benjamin Peterson benja...@python.org added the comment: What exactly is the bug you're reporting? Python 2.7.2 (default, Oct 27 2011, 22:35:02) [GCC 4.5.3] on linux2 Type help, copyright, credits or license for more information. print u'abcœé€' abcœé€ -- nosy: +benjamin.peterson

[issue14176] Fix unicode literals (for PEP 414)

2012-03-02 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- components: +Unicode -None nosy: +ezio.melotti type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14176 ___

[issue14176] Fix unicode literals (for PEP 414)

2012-03-02 Thread Martin v . Löwis
Martin v. Löwis mar...@v.loewis.de added the comment: What operating system and what terminal are you using? If Windows: what code page does your terminal run in? -- nosy: +loewis ___ Python tracker rep...@bugs.python.org

[issue14176] Fix unicode literals (for PEP 414)

2012-03-02 Thread Jean-Michel Fauth
Jean-Michel Fauth wxjmfa...@gmail.com added the comment: I deliberately hid the information about the used interactive interpreter; just to show you the experience of new Python user. (This is what I'm showing to potential Python devs who are interested in this tool; I know Python and use it

[issue14176] Fix unicode literals (for PEP 414)

2012-03-02 Thread Georg Brandl
Georg Brandl ge...@python.org added the comment: Well, let me soothe your mind then: in Python 3, '...' and u'...' will be absolutely equal, so you won't find any more mess with the changes from PEP 414. -- nosy: +georg.brandl ___ Python tracker

[issue14176] Fix unicode literals (for PEP 414)

2012-03-02 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: Unless I'm misunderstanding, this is a duplicate of issue 1602. You will note that the problem is *not* with Python (or open source software in general), the problem is that Microsoft treats the command line as a second (or third, or

[issue14176] Fix unicode literals (for PEP 414)

2012-03-02 Thread Jean-Michel Fauth
Jean-Michel Fauth wxjmfa...@gmail.com added the comment: Sorry, I neglected the most important information. Python 3.2 is working perfectly. It is simply impossible to create non valid strings (type/class 'str') from a keyboard. (non programmatically created). Like the limited characters set I

[issue14176] Fix unicode literals (for PEP 414)

2012-03-02 Thread R. David Murray
R. David Murray rdmur...@bitdance.com added the comment: OK, so I still don't understand what problem it is you are reporting. What do you mean by can't craete non-valid strings? Of course you can't. (I don't see how you could do that programatically, either, although that depends heavily