We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04db8c2 commit 60f3b61Copy full SHA for 60f3b61
CHANGELOG.md
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
10
11
### Fixed
12
13
-- Fixed broken regex that may have resulted in poor performance.
+- Fixed broken regex that may have resulted in poor performance. https://github.com/Textualize/rich/pull/3535
14
15
## [13.9.2] - 2024-10-04
16
tests/test_cells.py
@@ -72,10 +72,9 @@ def test_is_single_cell_widths() -> None:
72
BOX = "┌─┬┐│ ││├─┼┤│ ││├─┼┤├─┼┤│ ││└─┴┘"
73
74
for character in BOX:
75
- print(repr(character))
76
assert _is_single_cell_widths(character)
77
78
- for character in "💩":
+ for character in "💩😽":
79
assert not _is_single_cell_widths(character)
80
81
for character in "わさび":
0 commit comments