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
import math
from decimal import Decimal
math.isnan(Decimal("nan"))
evaluates to True
Also isinf and isnan do no error out when passed int types. (Just always return false) Should that mean the stub should allow int to be passed as well?