I have a problem with utf-8. It seems to me something with the encoding python or console. Here script, in file with codepage utf-8:
# coding: utf8 print('слово')
It works on Tool labs: python3 utf8.py → слово.
But breaks at Grit: jsub -l release=trusty -N utf8test python3 utf8.py → utf8test.err:
print('\u0441\u043b\u043e\u0432\u043e') UnicodeEncodeError: 'ascii' codec can't encode characters in position 0-4: ordinal not in range(128)
Do not help variants with ".encode, .decode, ('utf-8'), ('ascii')".
Could you set the global utf-8 by default, as on Tool labs?