Skip to content

Commit 60f3b61

Browse files
committed
changelog
1 parent 04db8c2 commit 60f3b61

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
### Fixed
1212

13-
- Fixed broken regex that may have resulted in poor performance.
13+
- Fixed broken regex that may have resulted in poor performance. https://github.com/Textualize/rich/pull/3535
1414

1515
## [13.9.2] - 2024-10-04
1616

tests/test_cells.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,9 @@ def test_is_single_cell_widths() -> None:
7272
BOX = "┌─┬┐│ ││├─┼┤│ ││├─┼┤├─┼┤│ ││└─┴┘"
7373

7474
for character in BOX:
75-
print(repr(character))
7675
assert _is_single_cell_widths(character)
7776

78-
for character in "💩":
77+
for character in "💩😽":
7978
assert not _is_single_cell_widths(character)
8079

8180
for character in "わさび":

0 commit comments

Comments
 (0)