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 svild
Recipients svild
Date 2022-02-25.15:49:37
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1645804177.22.0.124909459168.issue46855@roundup.psfhosted.org>
In-reply-to
Content
$ python
Python 3.10.2 (main, Jan 15 2022, 19:56:27) [GCC 11.1.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> a= "Betrag gr\xc3\xb6\xc3\x9fer als Betrag der Original-Transaktion"
>>> a
'Betrag gröÃ\x9fer als Betrag der Original-Transaktion'
>>> print(a)
Betrag gröÃ~ 

---------------

And above waits forever. Does not consume resources, but does not hear Ctrl-C. Ctrl-\ kills it.

The string above is just a byte string of the utf-8 representation, with forgotten "b" infront of it.
History
Date User Action Args
2022-02-25 15:49:37svildsetrecipients: + svild
2022-02-25 15:49:37svildsetmessageid: <1645804177.22.0.124909459168.issue46855@roundup.psfhosted.org>
2022-02-25 15:49:37svildlinkissue46855 messages
2022-02-25 15:49:37svildcreate