changelog

This commit is contained in:
Will McGugan 2024-10-22 16:29:46 +01:00
parent 04db8c2946
commit 60f3b615a7
2 changed files with 2 additions and 3 deletions

View file

@ -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

View file

@ -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 "わさび":