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 eryksun
Recipients dgan, eryksun, ezio.melotti, vstinner
Date 2020-10-12.19:21:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1602530517.15.0.676362454785.issue42020@roundup.psfhosted.org>
In-reply-to
Content
The terminal you're using apparently implements C1 controls [1]. U+009B is the Control Sequence Introducer (CSI) for ANSI escape sequences. U+0090 starts a Device Control String (DCS), and it gets terminated by U+009C, a String Terminator (ST). For example, in GNOME Terminal in Linux:

    >>> print('spam\x9b4Deggs')
    eggs

    >>> print('spam\x90some DCS string\x9c')
    spam

---

[1] https://en.wikipedia.org/wiki/C0_and_C1_control_codes
History
Date User Action Args
2020-10-12 19:21:57eryksunsetrecipients: + eryksun, vstinner, ezio.melotti, dgan
2020-10-12 19:21:57eryksunsetmessageid: <1602530517.15.0.676362454785.issue42020@roundup.psfhosted.org>
2020-10-12 19:21:57eryksunlinkissue42020 messages
2020-10-12 19:21:57eryksuncreate