summaryrefslogtreecommitdiff
path: root/tests/float/builtin_float_abs.py
AgeCommit message (Collapse)Author
2018-09-27py/objfloat: Fix abs(-0.0) so it returns 0.0.Damien George
Nan and inf (signed and unsigned) are also handled correctly by using signbit (they were also handled correctly with "val<0", but that didn't handle -0.0 correctly). A test case is added for this behaviour.