This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.araujo
Recipients eric.araujo, eryksun, svild
Date 2022-02-26.14:39:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1645886388.74.0.246605487603.issue46855@roundup.psfhosted.org>
In-reply-to
Content
Note that the original issue seems to be that you had bytes but pasted it as a unicode string.  This works:

>>> b = b'Betrag gr\xc3\xb6\xc3\x9fer als Betrag der Original-Transaktion'
>>> s = b.decode('utf-8')
>>> print(s)
Betrag größer als Betrag der Original-Transaktion
History
Date User Action Args
2022-02-26 14:39:48eric.araujosetrecipients: + eric.araujo, svild, eryksun
2022-02-26 14:39:48eric.araujosetmessageid: <1645886388.74.0.246605487603.issue46855@roundup.psfhosted.org>
2022-02-26 14:39:48eric.araujolinkissue46855 messages
2022-02-26 14:39:48eric.araujocreate