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
Builtin and extension functions that take integer arguments no longer accept Decimals, Fractions and other objects that can be converted to integers only with a loss (e.g. that have the int() method but do not have the index() method). (Contributed by Serhiy Storchaka in bpo-37999.)
The text was updated successfully, but these errors were encountered:
As of Python3.10:
> Builtin and extension functions that take integer arguments no longer
accept Decimals, Fractions and other objects that can be converted to
integers only with a loss (e.g. that have the int() method but do not
have the index() method). (Contributed by Serhiy Storchaka in
bpo-37999.)
`startTimer` accepts only integers (milliseconds) and fails to
implicitly convert floats.
Fixes: harvimt#128
Signed-off-by: Stanislav Levin <[email protected]>
Many of
quamash
self-tests fail with similar traceback (checked withPyQt5
):According to https://docs.python.org/3.10/whatsnew/3.10.html#other-language-changes:
The text was updated successfully, but these errors were encountered: