You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on test:
- make_dirty([[1,2,3]], dirty={(0,0):0, (0,1):0}) with cellzero=0
the expected result is [[3]] (but was [[2]] because it starts
removing 1 in [1,2,3], then 3 in [2,3], instead of removing
1 and 2 in [1,2,3]
- same test with non zero cell
basically, this doesn't assume the key traversal is ordered in dirty
additionaly, it use a default cellzero value (to `None`)
remove cellzero default value
0 commit comments