Specify the algorithm for splitting text into cells

This commit is contained in:
Kovid Goyal
2025-04-10 10:47:07 +05:30
parent b32a5492c5
commit 3f919cbc56
2 changed files with 124 additions and 2 deletions

View File

@@ -682,3 +682,6 @@ class TestDataTypes(BaseTest):
s.draw('a' * s.columns)
s.draw('\u0306')
self.ae(str(s.line(0)), 'a' * s.columns + '\u0306')
s.reset()
s.draw('\0')
self.ae(str(s.line(0)), '')