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
Also would be good if TrueTie had a __repr__ that showed the tied winners? Instead of <STAR.TrueTie at 0x188dc2885c8>. If TrueTie({0, 1}) had a __repr__ of TrueTie({0, 1}), it would fit the convention of "If at all possible, this should look like a valid Python expression that could be used to recreate an object with the same value"
Currently this is False.
Probably should be True and probably TrueTie should be a subclass of
set
, similar to my comment on #17 (comment)?So that
TrueTie([1, 0]) == TrueTie((0, 1)) == TrueTie({1, 0, 1})
is also True.The text was updated successfully, but these errors were encountered: