[issue10920] cp65001, PowerShell, Python crash.

2011-10-26 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: I added a cp65001 codec to Python 3.3: see issue #13216. So Python will not crash anymore if the console code page is set to cp65001. -- ___ Python tracker rep...@bugs.python.org

[issue10920] cp65001, PowerShell, Python crash.

2011-01-18 Thread STINNER Victor
Changes by STINNER Victor victor.stin...@haypocalc.com: -- status: open - closed ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10920 ___ ___

[issue10920] cp65001, PowerShell, Python crash.

2011-01-16 Thread Jean-Michel Fauth
New submission from Jean-Michel Fauth wxjmfa...@gmail.com: Just relying a discussion open on comp.lang.python, http://groups.google.com/group/comp.lang.python/browse_thread/thread/771aa9081ad6584c# 1) Windows 7, open PowerShell 2) Change code page to cp65001 3) Launch Python3.1.2 or

[issue10920] cp65001, PowerShell, Python crash.

2011-01-16 Thread Antoine Pitrou
Changes by Antoine Pitrou pit...@free.fr: -- nosy: +haypo priority: normal - high ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue10920 ___ ___

[issue10920] cp65001, PowerShell, Python crash.

2011-01-16 Thread Antoine Pitrou
Antoine Pitrou pit...@free.fr added the comment: Probably a legitimate crash (aka deliberate abort), since Python needs an encoding for its standard input/output text streams, and the encoding suggested by the system (cp65001) isn't supported. -- nosy: +pitrou

[issue10920] cp65001, PowerShell, Python crash.

2011-01-16 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: PS D:\jm chcp 65001 Page de codes active : 65001 Please don't do that: it is useless (it doesn't help to display or read more unicode characters) and it breaks Windows console: see issue #1602 (especially msg120414 and

[issue10920] cp65001, PowerShell, Python crash.

2011-01-16 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: If the crash is the following message, this issue is a duplicate of #6058. --- PS D:\jm c:\python31\python.exe Fatal Python error: Py_Initialize: can't initialize sys standard streams LookupError: unknown encoding: cp65001 --- It