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
QLCDNumber overflows when input >= 2147483648. (For example: input 9999999999...9)
https://github.com/mfitzp/15-minute-apps/blob/b99eb330310fe7302ead39473ef0d34cccb3d12d/calculator/calculator.py#L62-L67
Since integer has an limit of 0x7FFFFFFF(or 2147483647), casting it into float using self.stack[-1] = float(v) would be better.
self.stack[-1] = float(v)
Patch code: liuqun@a960653
The text was updated successfully, but these errors were encountered:
No branches or pull requests
QLCDNumber overflows when input >= 2147483648. (For example: input 9999999999...9)
https://github.com/mfitzp/15-minute-apps/blob/b99eb330310fe7302ead39473ef0d34cccb3d12d/calculator/calculator.py#L62-L67
Since integer has an limit of 0x7FFFFFFF(or 2147483647), casting it into float using
self.stack[-1] = float(v)
would be better.Patch code: liuqun@a960653
The text was updated successfully, but these errors were encountered: