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
Should also add support for set letter matches, with f{} only matching frozensets and m{} only matching collections.Counters with support for properly matching repeated elements.
Should match dictionary mapping semantics, such that
matches if
{1, 2, 3} <= some_set
, rather than{1, 2, 3} == some_set
, with explicit syntax in the form offor checking
{1, 2, 3} == some_set
.Note that this would be a breaking change, as was the previous change to
dict
matching.The text was updated successfully, but these errors were encountered: