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
We should document why type promotions are disabled with --strict-equality. We can give examples like b'abc' == 'abc' in Python 2 vs 3, and (1/3)**10 * 3**10 == 1. We can also show a note with the non-overlapping comparison error in such cases.
The text was updated successfully, but these errors were encountered:
This is a follow-up for #6370
We should document why type promotions are disabled with
--strict-equality
. We can give examples likeb'abc' == 'abc'
in Python 2 vs 3, and(1/3)**10 * 3**10 == 1
. We can also show a note with the non-overlapping comparison error in such cases.The text was updated successfully, but these errors were encountered: