[issue38357] print adding extra bytes in hex above x7F

2019-10-02 Thread Artificial
Artificial added the comment: Thanks, Arfrever Seems unnecessarily complicated for what worked in Python2. -- ___ Python tracker <https://bugs.python.org/issue38

[issue38357] print adding extra bytes in hex above x7F

2019-10-02 Thread Artificial
Artificial added the comment: python3 -c "print('\x7F')" > test.txt && xxd test.txt : 7f0a .. python3 -c "print('\x80')

[issue38357] print adding extra bytes in hex above x7F

2019-10-02 Thread Artificial
New submission from Artificial : Any hex str of value above \x7F causes an extra byte to printed. -- files: Screenshot from 2019-10-02 20-31-50.png messages: 353796 nosy: Artificial priority: normal severity: normal status: open title: print adding extra bytes in hex above x7F type