fix input()

main
Fabien Benureau 10 years ago
parent 97a0d15ca2
commit 2dc1b9ea4f

@ -6,8 +6,8 @@ if sys.version_info[0] == 2:
_read_config = configparser.SafeConfigParser.readfp _read_config = configparser.SafeConfigParser.readfp
def input(): def input():
raw_input().decode(sys.stdin.encoding or 'utf8', 'ignore') return raw_input().decode(sys.stdin.encoding or 'utf8', 'ignore')
# The following has to be a function so that it can be mocked # The following has to be a function so that it can be mocked
# for test_usecase. # for test_usecase.
def _get_raw_stdout(): def _get_raw_stdout():

Loading…
Cancel
Save