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
It is all red even though it should be white like for floats when there is no difference. The problem is the same when the comparison is done via two sessions.
fromlarrayimportSession, compare, ndtesta=ndtest(3, dtype=float)
b=ndtest(3, dtype=int)
compare(a, a) # white background like it shouldcompare(a, a+1) # blue background like it shouldcompare(b, b) # red background even if diff is 0compare(b, b+1) # blue background like it shouldses=Session(a=a, b=b)
compare(ses, ses) # red background for b even if diff is 0