dark
dark copied to clipboard
Off-by-one Tuple Reconstruction bug
Given the tuple, ("aaa|aa", "c|cccc", "eeeee") highlighting between the |s and cutting should leave ("aaa", "eeeee") but leaves ("aaaa", "eeeee"). There's some off-by-one error here.
Once these are done, 2 TUPLETODO commented-out tests are likely to auto-resolve.
Somehow, this has resolved itself? I can't reproduce, for lists or tuples.
Nevermind - I can repro - but seemingly only with mixed types? e.g. I can repro with ("hel|lo", 12|34) but not with 2 strings
How's this looking now?
Will be fixed by #4531