← baseline_full_v2

rich_3535

failed NO_PATCH NO_PATCH UNSUBMITTED empty_patch(None) · None tool calls · 0 s · Textualize/rich

Task input

Regex error

Fixes an issue with the regex used to select the fast path for strings with single-width characters.

This may have had a detrimental effect on performance for some operations.

Tool calls (0)

#ToolArgumentsResult
No trace captured.

Test output

show
.......F
=================================== FAILURES ===================================
__________________________ test_is_single_cell_widths __________________________

    def test_is_single_cell_widths() -> None:
        # Check _is_single_cell_widths reports correctly
        for character in string.printable:
            if ord(character) >= 32:
>               assert _is_single_cell_widths(character)
E               AssertionError: assert None
E                +  where None = _is_single_cell_widths('p')

tests/test_cells.py:70: AssertionError
!!!!!!!!!!!!!!!!!!!!!!!!!! stopping after 1 failures !!!!!!!!!!!!!!!!!!!!!!!!!!!
1 failed, 7 passed in 0.03s