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
Checks like b'abc' in b'cde' can potentially return True, but they are flagged as always false by --strict-equality. This is because bytes is a subclass of Sequence[int]. We should probably simply special-case this.
The text was updated successfully, but these errors were encountered:
Checks like
b'abc' in b'cde'
can potentially returnTrue
, but they are flagged as always false by--strict-equality
. This is becausebytes
is a subclass ofSequence[int]
. We should probably simply special-case this.The text was updated successfully, but these errors were encountered: