mirror of
https://github.com/Textualize/rich.git
synced 2025-08-04 18:18:22 +00:00
changelog
This commit is contained in:
parent
04db8c2946
commit
60f3b615a7
2 changed files with 2 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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 "わさび":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue