We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When invoking the multiply function, or using the * operator in Python, an incorrect result may occur.
multiply
*
Steps to reproduce the behavior:
steppyble
A0...B
203
2003
>>> steppyble.Number("2003") * steppyble.Number("2003") 4606900 >>> 2003 * 2003 4012009
The text was updated successfully, but these errors were encountered:
It turns out that power is affected by this too.
power
Sorry, something went wrong.
Fixed incorrect result in multiplication (#5)
30d1cde
Fixed in 30d1cde.
ZCG-coder
No branches or pull requests
Describe the bug
When invoking the
multiply
function, or using the*
operator in Python, an incorrect result may occur.To Reproduce
Steps to reproduce the behavior:
steppyble
numbers in the form ofA0...B
, e.g.:203
,2003
...*
operator to multiply the both.OS
The text was updated successfully, but these errors were encountered: