New submission from Grzegorz Abramczyk:

Inputing some Unicode characters (like 'łąśćńó...') causes interactive session 
to abort.

When console session is set to use UTF-8 code page (65001) after diacritic 
character appears in string the session abruptly ends. Looking into debug 
output it looks like some cleanup is performed but there are no error messages 
indicating what caused problem.

Problem spotted on Windows 10 (technical preview) but I may try to replicate it 
on some released operating system.

---
C:\>chcp 1250
Active code page: 1250

C:\>python -i
Python 3.4.2 (v3.4.2:ab2c023a9432, Oct  6 2014, 22:15:05) [MSC v.1600 32 bit 
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> 'ł'
'ł'
>>> exit()

C:\>chcp 65001
Active code page: 65001

C:\>python -i
Python 3.4.2 (v3.4.2:ab2c023a9432, Oct  6 2014, 22:15:05) [MSC v.1600 32 bit 
(Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> 'ł'


C:\

----------
components: Unicode, Windows
files: -v.txt
messages: 235629
nosy: AGrzes, ezio.melotti, haypo, steve.dower, tim.golden, zach.ware
priority: normal
severity: normal
status: open
title: Unicode character ends interactive session
type: crash
versions: Python 3.4
Added file: http://bugs.python.org/file38061/-v.txt

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue23424>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to