msg169369 - (view) |
Author: alex hartwig (alex.hartwig) |
Date: 2012-08-29 12:41 |
Это из IDLE:
Python 2.7.2+ (default, Oct 4 2011, 20:03:08)
[GCC 4.6.1] on linux2
Type "copyright", "credits" or "license()" for more information.
>>> import sys
>>> import locale
>>> sys.getdefaultencoding()
'ascii'
>>> locale.getpreferredencoding()
'UTF-8'
>>> s = u'Русский текст'
>>> print s.encode('utf_8')
Ð ÑÑÑкий ÑекÑÑ
>>> print s.encode('latin1')
Русский текст
Это из консоли:
>>> import sys
>>> import locale
>>> sys.getdefaultencoding()
'ascii'
>>> locale.getpreferredencoding()
'UTF-8'
>>> s = u'Русский текст'
>>> print s.encode('utf_8')
Русский текст
|
msg169370 - (view) |
Author: Ezio Melotti (ezio.melotti) *  |
Date: 2012-08-29 12:56 |
Looks like your IDLE is set to use latin-1, but s.encode('latin1') should have failed with an UnicodeEncodeError. Are you sure you copied the snippet correctly?
The default source encoding refers to the .py files you open with IDLE, and doesn't affect the encoding used by IDLE itself while printing.
(Please use English to report issues.)
|
msg169371 - (view) |
Author: alex hartwig (alex.hartwig) |
Date: 2012-08-29 13:02 |
Text is correct. See attachment.
|
msg169385 - (view) |
Author: Martin v. Löwis (loewis) *  |
Date: 2012-08-29 14:19 |
The problem is that IDLE passes an UTF-8 encoded source string to compile, and compile, in the absence of a source encoding, uses the PEP 263 default source encoding, i.e. Latin-1.
As the consequence, the variable s has the value
u'\\xd0\\xa0\\xd1\\x83\\xd1\\x81\\xd1\\x81\\xd0\\xba\\xd0\\xb8\\xd0\\xb9 \\xd1\\x82\\xd0\\xb5\\xd0\\xba\\xd1\\x81\\xd1\\x82'
IDLE's "Default Source Encoding" is irrelevant - it only applies to editor windows.
One solution for that is the attached patch. However, this patch isn't right, since it will cause all source to be interpreted as UTF-8. This would be wrong when the sys.stdin.encoding is not UTF-8, and byte string objects are created in interactive mode.
Interactive mode manages to get it right by looking up sys.stdin.encoding during compilation, but it does so only when in interactive mode (i.e. when tok->prompt != NULL.
I don't see any way to fix this problem in Python 2. It is fixed in Python 3, basically by always assuming that the source encoding is UTF-8, by making all string objects Unicode objects, and disallowing non-ASCII characters in bytes literals
|
msg175439 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2012-11-12 12:19 |
> However, this patch isn't right, since it will cause all source to be interpreted as UTF-8. This would be wrong when the sys.stdin.encoding is not UTF-8, and byte string objects are created in interactive mode.
Can you show how to reproduce the error that you're talking about? I have found no issues running the bare Python and IDLE (with your patch, of course) with files in different encodings under different locales.
|
msg187551 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2013-04-22 10:00 |
The problem (as I understand it) is that if Martin's patch fixes an unicode literals, it breaks a string literals.
LC_ALL=ru_RU.cp1251 LANG=ru_RU.cp1251 ./python Lib/idlelib/idle.py
>>> print u'йцук'
йцук
>>> print 'йцук'
йцук
Here is a different patch, which fixes unicode strings and preserve byte strings.
>>> print u'йцук'
йцук
>>> print 'йцук'
йцук
|
msg187558 - (view) |
Author: R. David Murray (r.david.murray) *  |
Date: 2013-04-22 12:44 |
I've combined the nosy lists and will close the other issue. Serhiy, what if the source already has a coding cookie line?
|
msg187564 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2013-04-22 14:14 |
A coding cookie line will be ignored. Note that this affects only very obscure case when you are pasting a multiline code with a coding cookie line into IDLE shell (this is only way to get a coding cookie line in the shell). Running a file does not pass through runsource(). runsource() used only for a code entered in the shell (may be Martin or Roger correct me if I wrong)
|
msg187568 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2013-04-22 15:32 |
An interactive Python console ignores a coding cookie line too.
$ cat test.py
# -*- coding: koi8-r -*-
print repr('йцук'), 'йцук', repr(u'йцук'), u'йцук'
$ LC_ALL=ru_RU.cp1251 LANG=ru_RU.cp1251 ./python test.py
'\xe9\xf6\xf3\xea' йцук u'\u0418\u0416\u0421\u0419' ИЖСЙ
$ LC_ALL=ru_RU.cp1251 LANG=ru_RU.cp1251 ./python
Python 2.7.4+ (2.7:0f31f38e8a17+, Apr 13 2013, 21:06:36)
[GCC 4.4.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> # -*- coding: koi8-r -*-
... print repr('йцук'), 'йцук', repr(u'йцук'), u'йцук'
'\xe9\xf6\xf3\xea' йцук u'\u0439\u0446\u0443\u043a' йцук
('\xe9\xf6\xf3\xea' is 'йцук' in cp1251 and 'ИЖСЙ' in koi8-r)
|
msg187607 - (view) |
Author: Roger Serwy (roger.serwy) *  |
Date: 2013-04-23 04:22 |
Here's a tangentially related issue: #14326
IDLE doesn't handle pasting multi-line code properly (issue3559), IDLE2 will silently ignore code after the first executable statement. IDLE3 may give an error.
Can't we just make IDLE's shell default to UTF-8?
|
msg187617 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2013-04-23 08:11 |
> Here's a tangentially related issue: #14326
Yes, this issue looks as a prerequisite for it.
> IDLE doesn't handle pasting multi-line code properly (issue3559), IDLE2 will silently ignore code after the first executable statement. IDLE3 may give an error.
Well, then the patch doesn't introduce a significant regression.
> Can't we just make IDLE's shell default to UTF-8?
This is easy. Just set IOBinding.encoding to "utf-8". But I'm not sure we don't lost something in this case.
|
msg188358 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2013-05-04 12:36 |
If there are no objections I will commit the patch soon.
|
msg188399 - (view) |
Author: Roger Serwy (roger.serwy) *  |
Date: 2013-05-04 19:25 |
There is a problem. Adding the encoding comment to the top of the source causes off-by-one line errors in the traceback.
Take as an example:
>>> 1/0
Traceback (most recent call last):
File "<pyshell#0>", line 2, in <module>
ZeroDivisionError: integer division or modulo by zero
>>>
|
msg188460 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2013-05-05 19:43 |
Good catch. Thank you, Roger.
|
msg195780 - (view) |
Author: Thrlwiti (THRlWiTi) * |
Date: 2013-08-21 12:04 |
How about passing on UnicodeError? Will it cause other problems?
|
msg195783 - (view) |
Author: Thrlwiti (THRlWiTi) * |
Date: 2013-08-21 12:20 |
Sorry, it's probably has the same problem as what Martin suggested. Although I think it's better than having program interrupted.
|
msg195792 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2013-08-21 13:47 |
> How about passing on UnicodeError?
I don't see how it will resolve any problem.
|
msg195795 - (view) |
Author: Thrlwiti (THRlWiTi) * |
Date: 2013-08-21 14:14 |
Oops! My problem is that I get "Unsupported characters in input" when trying to type any Unicode string in IDLE's interactive mode.
e.g. a simple command like: s = u'Русский текст' gives: Unsupported characters in input
Probably unrelated to the issue at hand. I don't know how I ended up in this thread. Again, sorry.
|
msg195858 - (view) |
Author: Thrlwiti (THRlWiTi) * |
Date: 2013-08-22 04:46 |
I really think this information might help, if not, I promise not to post anything else. :)
This is a sample program I run:
'''
# -*- coding: utf-8 -*-
import sys
import locale
de = sys.getdefaultencoding()
pd = locale.getpreferredencoding()
print de, pd
s1 = 'سلام'
print s1
s2 = u'سلام'
print s2
'''
I tried to run it before and after applying suggested patches.
Before applying any patch:
'''
Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>>
ascii cp1256
ط³ظ„ط§ظ…
سلام
>>> s3 = 'سلام'
>>> s4 = u'سلام'
>>> s3
'\xd3\xe1\xc7\xe3'
>>> s4
u'\xd3\xe1\xc7\xe3'
>>> print s3
سلام
>>> print s4
ÓáÇã
>>> s = u'Русский текст'
Unsupported characters in input
'''
After applying loewis's patch:
'''
Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>>
ascii cp1256
ط³ظ„ط§ظ…
سلام
>>> s3 = 'سلام'
>>> s4 = u'سلام'
>>> s3
'\xd8\xb3\xd9\x84\xd8\xa7\xd9\x85'
>>> s4
u'\u0633\u0644\u0627\u0645'
>>> print s3
ط³ظ„ط§ظ…
>>> print s4
سلام
>>> s = u'Русский текст'
>>> print s
Русский текст
>>>
'''
After applying serhiy.storchaka's patch:
'''
Python 2.7.5 (default, May 15 2013, 22:44:16) [MSC v.1500 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> ================================ RESTART ================================
>>>
ascii cp1256
ط³ظ„ط§ظ…
سلام
>>> s3 = 'سلام'
>>> s4 = u'سلام'
>>> s3
'\xd3\xe1\xc7\xe3'
>>> s4
u'\u0633\u0644\u0627\u0645'
>>> print s3
سلام
>>> print s4
سلام
>>> s = u'Русский текст'
Unsupported characters in input
'''
My point is that printing s3 and s4 in interactive mode, should produce the same results as printing s1 and s2 from source file. Loewis's patch handled this as I expected. Also this patch solves my problem of not being able to print u'Русский текст' (that is due to my Windows locale being set to Persian, not Russian.)
|
msg195861 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2013-08-22 06:08 |
Use cp1256 encoding in your source file. It is expected that usually your source files encoding is same as your locale encoding. In such case printing string literals and Unicode string literals produces same result (as they look in the sources).
s1 is '\xd8\xb3\xd9\x84\xd8\xa7\xd9\x85' (u'سلام'.encode('utf-8')) and when it printed in utf-8 locale it produces "سلام", but when it printed in cp1256 locale it produces a mojibake.
When you convert your source file to cp1256 and change a header, s1 will be '\xd3\xe1\xc7\xe3' (u'سلام'.encode('cp1256')) and will produce "سلام" when printed in your cp1256 locale.
|
msg201960 - (view) |
Author: Geraldo Xexeo (Geraldo.Xexeo) |
Date: 2013-11-02 02:31 |
The same program will behave different in Windows and Mac.
utf-8 works on Mac (10.6.8), cp1256 does not print some lines
cp1256 works on Windows 7, utf-8 prints some characters in a wrong way
For the record, I use accentuated letters from Portuguese alphabet ( ã ã, for example).
|
msg203193 - (view) |
Author: Thrlwiti (THRlWiTi) * |
Date: 2013-11-17 15:37 |
Well, if there is no other way around this, I think it's better to apply Martin's patch. At least then we will be able to enter any valid utf-8 character in IDLE (although print statement won't print correctly unless the string is decoded first).
(As a Windows user, currently I can't print u'йцук' in interactive mode and get an "Unsupported characters in input" error because my default system encoding (cp1256) can't encode Russian.)
Also it will be more Unicode friendly which is not a bad thing.
|
msg203194 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2013-11-17 15:47 |
Here is a patch with a hack which corrects a line number in displayed traceback. It doesn't solve a problem totally, but perhaps it is a good enough approximation.
|
msg203247 - (view) |
Author: Thrlwiti (THRlWiTi) * |
Date: 2013-11-18 04:54 |
Thank you Serhiy for working on this. This patch solves the problem when all your input characters are encodable using system preferred encoding. But issue19625 persists. I still can't print something like 'Русский текст' in interactive mode.
Another problem is that output of interactive mode and running a module is different if source encoding is something other that system's default. For example:
(With current patch) in interactive mode:
>>> print 'آ'
آ
>>> print u'آ'
آ
But in when running same commands from a file with utf-8 encoding:
ط¢
آ
I know, you siad to use cp1256 encoding in my source file. But I really prefer to work with utf-8 than working with a codepage that is not fully compatible with my language and I believe many other programmers are the same as me (even if there is a codepage they can work with).
(cp1256 is only for Arabic, but (when a program does not support unicode) Microsoft uses it as a second option for some other similar languages like Urdu, Persian. But it does not include all the characters they need.)
IMO these two problems -- being a able to type any Unicode characters in interactive mode and getting the same output as running modules -- are more important than a mere representation problem in interactive mode. (and considering that I use utf-8 for my source files, both of them were solved by martin's patch. [Of course I'm not saying it's the solution, just that it worked better for me])
|
msg212616 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2014-03-03 08:13 |
Terry, what do you think? This bug is critical for non-ASCII-only users of IDLE.
|
msg218562 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2014-05-14 18:33 |
I'm going to commit my patch in few days. This is not perfect solution, but I believe it is better than current state.
|
msg218571 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2014-05-14 20:21 |
It took me awhile to re-recognize Это из консоли: as 'made in konsole'.
I agree that the discrepancy between Idle shell and console is a bug relative to a general goal of having them work as nearly the same as possible and sensible.
> This bug is critical for non-ASCII-only users of IDLE.
This bug, like many others involving non-Ascii chars, has already been fixed in 3.x, though it is not only a 2 versus 3 issue. Given that there are technical limits to imitating the console, we could have closed this issue as already fixed, "wont fix" in 2.7, upgrade to a version that has the fix. However, since this is also a within 2.7, console versus Idle issue, improvement would be good.
The +coding cookie, -1 line hack induces a non-obvious dependency between files that I think should be documented by comments such as
# run.cleanup_traceback() compensates for added line
# compensation for coding cookie added in pyshel..runsource()
I think it ok to push less than perfect patches that make definite improvements and do not preclude possibly better patches in the future. I have not seen any comment from alex whether this fixes his particular example on his machine, but if you are convinced that this fixes some problems and only causes a micro slowdown of working uses, go ahead.
|
msg218599 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2014-05-15 09:36 |
Alternative solution is to force UTF-8 in IDLE console. But I think this will be more surprising, especially for Windows users.
|
msg218623 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2014-05-15 18:34 |
Idle 3.x has Martin's patch, except that the 'if' clause is merely commented out rather than removed. (Perhaps someone wanted to test the removal first. It should now be deleted.)
My 2.7 Idle has Default Source Encoding ... [x] None. Since there is nothing for this in either config-main.def, I presume it is the default -- at least for Windows. But Martin says it is not relevant.
'Surprising' suggests that you think or know that doing the same in 2.7 might introduce other discrepancies from console behavior. I am reluctant to do that, though it is possible that it might make Idle *better* than the console.
I would definitely be reluctant to do something more wide-ranging than your patch without extensive tests, and even that patch should have some tests, some of which pass now and continue to pass, and other that fail now and pass with the patch.
Irdb said "As a Windows user, currently I can't print u'йцук' in interactive mode and get an "Unsupported characters in input" error because my default system encoding (cp1256) can't encode Russian.)"
Idle 2.7
>>> u'йцук'
Unsupported characters in input
Console 2.7
>>> u'????'
u'????'
>>> u'????'[0] == '?'
True
|
msg218973 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2014-05-23 14:37 |
When someone reads file in locale encoding (either as str or unicode in 2.7), he gets printable result. When someone lists directory, he gets printable result (str or unicode). When someone enter string literal (either str or unicode) in interactive mode, he gets printable result. This is expected behavior. And this means that default encoding for text files, filesystem encoding and encoding used in interactive Python (or IDLE console) should be the same, locale encoding.
> Irdb said "As a Windows user, currently I can't print u'йцук' in interactive mode and get an "Unsupported characters in input" error because my default system encoding (cp1256) can't encode Russian.)"
This is different issue. It would be better if IDLE will filter pasted text and replace unencodable characters or underscore them with wavy red line.
|
msg218987 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2014-05-23 18:58 |
I wonder if we should consider extracting the body of
if isinstance(source, types.UnicodeType):
as a function, call it ufix_latin1; add one or more alterntives, ufix_utf8, ufix_locale, ufix_irdb(?); keep ufix_latin1 as default; but switch to an alternative according to an Idle command line switch (or environmental variable?)?
|
msg219034 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2014-05-24 12:05 |
Only ufix_utf8 (with the utf-8 encoding of stdin/stdout/stderr) and ufix_locale (with hacked tracebacks) make sense.
|
msg242247 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2015-04-29 20:52 |
#19625, with a bit of discussion, was closed as a duplicate of this issue.
|
msg243393 - (view) |
Author: Roundup Robot (python-dev)  |
Date: 2015-05-17 10:54 |
New changeset 247f003b42ea by Serhiy Storchaka in branch '2.7':
Issue #15809: IDLE shell now uses locale encoding instead of Latin1 for
https://hg.python.org/cpython/rev/247f003b42ea
|
msg258630 - (view) |
Author: fireattack (fireattack) * |
Date: 2016-01-19 22:46 |
Any update on this?
|
msg258648 - (view) |
Author: Terry J. Reedy (terry.reedy) *  |
Date: 2016-01-20 06:46 |
Serhiy, unless you are planning to do something more, please close this. The extended extended maintenance period for 2.7 is mainly for build and security issues, and I don't expect to do any more 2.7-only patches.
|
msg258746 - (view) |
Author: Serhiy Storchaka (serhiy.storchaka) *  |
Date: 2016-01-21 09:17 |
It would be nice to add configuration option for IDLE Shell encoding and highlight non-encodable characters in Shell and Editor. But this feature is needed mainly for 2.7.
|
|
Date |
User |
Action |
Args |
2022-04-11 14:57:35 | admin | set | github: 60013 |
2018-10-31 10:59:33 | pradyunsg | set | nosy:
- pradyunsg
|
2016-01-21 09:17:55 | serhiy.storchaka | set | status: open -> closed resolution: fixed messages:
+ msg258746
stage: patch review -> resolved |
2016-01-20 06:46:00 | terry.reedy | set | messages:
+ msg258648 |
2016-01-19 23:09:09 | ned.deily | set | nosy:
- ned.deily
|
2016-01-19 22:50:26 | r.david.murray | set | nosy:
- r.david.murray
|
2016-01-19 22:46:27 | fireattack | set | messages:
+ msg258630 |
2015-08-16 22:53:09 | fireattack | set | nosy:
+ fireattack
|
2015-05-17 10:54:18 | python-dev | set | nosy:
+ python-dev messages:
+ msg243393
|
2015-04-29 20:52:56 | terry.reedy | set | messages:
+ msg242247 |
2014-05-24 12:05:07 | serhiy.storchaka | set | messages:
+ msg219034 |
2014-05-23 18:58:04 | terry.reedy | set | messages:
+ msg218987 |
2014-05-23 14:37:16 | serhiy.storchaka | set | messages:
+ msg218973 |
2014-05-15 19:02:36 | loewis | set | nosy:
- loewis
|
2014-05-15 18:34:12 | terry.reedy | set | messages:
+ msg218623 |
2014-05-15 09:36:08 | serhiy.storchaka | set | messages:
+ msg218599 |
2014-05-14 20:21:46 | terry.reedy | set | messages:
+ msg218571 title: IDLE console uses incorrect encoding. -> 2.7 IDLE console uses incorrect encoding. |
2014-05-14 18:33:11 | serhiy.storchaka | set | nosy:
+ benjamin.peterson messages:
+ msg218562
|
2014-03-03 08:13:06 | serhiy.storchaka | set | messages:
+ msg212616 |
2013-11-18 04:54:39 | THRlWiTi | set | messages:
+ msg203247 |
2013-11-17 15:47:27 | serhiy.storchaka | set | stage: needs patch -> patch review |
2013-11-17 15:47:02 | serhiy.storchaka | set | files:
+ idle_compile_coding_3.patch
messages:
+ msg203194 |
2013-11-17 15:37:19 | THRlWiTi | set | messages:
+ msg203193 |
2013-11-16 16:13:21 | serhiy.storchaka | link | issue19625 superseder |
2013-11-02 02:31:51 | Geraldo.Xexeo | set | nosy:
+ Geraldo.Xexeo messages:
+ msg201960
|
2013-08-22 06:08:52 | serhiy.storchaka | set | messages:
+ msg195861 |
2013-08-22 04:46:58 | THRlWiTi | set | messages:
+ msg195858 |
2013-08-21 14:14:26 | THRlWiTi | set | messages:
+ msg195795 |
2013-08-21 13:47:04 | serhiy.storchaka | set | messages:
+ msg195792 |
2013-08-21 12:20:24 | THRlWiTi | set | messages:
+ msg195783 |
2013-08-21 12:04:48 | THRlWiTi | set | files:
+ PyShell.py.patch
messages:
+ msg195780 |
2013-08-19 19:53:22 | THRlWiTi | set | nosy:
+ THRlWiTi
|
2013-05-05 19:43:14 | serhiy.storchaka | set | messages:
+ msg188460 stage: patch review -> needs patch |
2013-05-04 19:25:41 | roger.serwy | set | messages:
+ msg188399 |
2013-05-04 12:36:20 | serhiy.storchaka | set | messages:
+ msg188358 |
2013-04-23 08:12:00 | serhiy.storchaka | set | messages:
+ msg187617 |
2013-04-23 08:08:28 | serhiy.storchaka | link | issue14326 dependencies |
2013-04-23 04:22:54 | roger.serwy | set | messages:
+ msg187607 |
2013-04-22 15:32:15 | serhiy.storchaka | set | messages:
+ msg187568 |
2013-04-22 14:14:25 | serhiy.storchaka | set | messages:
+ msg187564 |
2013-04-22 12:44:58 | r.david.murray | set | nosy:
+ ned.deily, r.david.murray, pradyunsg, Tomoki.Imai messages:
+ msg187558
|
2013-04-22 10:01:27 | serhiy.storchaka | link | issue17348 superseder |
2013-04-22 10:00:33 | serhiy.storchaka | set | files:
+ idle_compile_coding_2.patch nosy:
+ kbk, roger.serwy messages:
+ msg187551
|
2013-01-27 12:37:05 | serhiy.storchaka | set | assignee: serhiy.storchaka |
2012-11-12 12:20:05 | serhiy.storchaka | set | stage: patch review |
2012-11-12 12:19:48 | serhiy.storchaka | set | nosy:
+ serhiy.storchaka messages:
+ msg175439
|
2012-09-01 01:23:57 | terry.reedy | set | nosy:
+ terry.reedy
|
2012-08-29 14:19:11 | loewis | set | files:
+ compile_unicode.diff
nosy:
+ loewis messages:
+ msg169385
keywords:
+ patch |
2012-08-29 13:02:41 | alex.hartwig | set | messages:
+ msg169371 |
2012-08-29 12:59:19 | asvetlov | set | title: Строки из IDLE поступают в неверной кодировке. -> IDLE console uses incorrect encoding. |
2012-08-29 12:56:17 | ezio.melotti | set | nosy:
+ ezio.melotti messages:
+ msg169370
|
2012-08-29 12:41:35 | alex.hartwig | create | |