We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d15007 commit 6c48851Copy full SHA for 6c48851
CHANGELOG.md
@@ -2,7 +2,7 @@
2
3
- Bug Fixes
4
- Updated `rich_utils.ANSI_STYLE_SEQUENCE_RE` to only match ANSI SGR (Select Graphic Rendition)
5
- sequences for text styling.
+ sequences for text styling. It previously also matched DEC Private Mode sequences.
6
7
## 3.2.1 (February 21, 2026)
8
tests/test_string_utils.py
@@ -150,7 +150,7 @@ def test_preserve_non_style_csi() -> None:
150
151
152
def test_preserve_private_modes() -> None:
153
- # Test that DEC private modes (containing '?') are not stripped
+ # Test that DEC Private Modes (containing '?') are not stripped
154
# Hide cursor (\x1b[?25l) and Show cursor (\x1b[?25h)
155
hide_cursor = "\x1b[?25l"
156
show_cursor = "\x1b[?25h"
0 commit comments