<div dir="ltr"><div><div><div><div><div><div>I think I have found out where the problem is. In fact, the encoding of the interactive input is determined by sys.stdin.encoding, but only in the case that it is a file object (see <a href="https://hg.python.org/cpython/file/d356e68de236/Parser/tokenizer.c#l890">https://hg.python.org/cpython/file/d356e68de236/Parser/tokenizer.c#l890</a> and the implementation of tok_stdin_decode). For example, by default on my system sys.stdin has encoding cp852.<br><br></div>>>> u'á'<br></div>u'\xe1' # correct<br></div>>>> import sys; sys.stdin = "foo"<br></div>>>> u'á'<br></div>u'\xa0' # incorrect<br><br></div>Even if sys.stdin contained a file-like object with proper encoding attribute, it wouldn't work since sys.stdin has to be instance of <type 'file'>. So the question is, whether it is possible to make a file instance in Python that is also customizable so it may call my code. For the first thing, how to change the value of encoding attribute of a file object.<br></div>