Skip to content

Commit

Permalink
changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Oct 22, 2024
1 parent 04db8c2 commit 60f3b61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

- 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

## [13.9.2] - 2024-10-04

Expand Down
3 changes: 1 addition & 2 deletions tests/test_cells.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,9 @@ def test_is_single_cell_widths() -> None:
BOX = "┌─┬┐│ ││├─┼┤│ ││├─┼┤├─┼┤│ ││└─┴┘"

for character in BOX:
print(repr(character))
assert _is_single_cell_widths(character)

for character in "💩":
for character in "💩😽":
assert not _is_single_cell_widths(character)

for character in "わさび":
Expand Down

0 comments on commit 60f3b61

Please sign in to comment.