Compare commits

..

No commits in common. "8ff60df158d07423c3e144485343befffbbaf0bf" and "2d682b24d8a6d8bb164e84a4cd455c4fa80be265" have entirely different histories.

3 changed files with 2 additions and 17 deletions

View File

@ -70,7 +70,6 @@ static bool int__truediv__(int argc, py_Ref argv) {
py_i64 lhs = py_toint(&argv[0]);
py_f64 rhs;
if(try_castfloat(&argv[1], &rhs)) {
if(rhs == 0.0) return ZeroDivisionError("float division by zero");
py_newfloat(py_retval(), lhs / rhs);
} else {
py_newnotimplemented(py_retval());
@ -83,7 +82,6 @@ static bool float__truediv__(int argc, py_Ref argv) {
py_f64 lhs = py_tofloat(&argv[0]);
py_f64 rhs;
if(try_castfloat(&argv[1], &rhs)) {
if(rhs == 0.0) return ZeroDivisionError("float division by zero");
py_newfloat(py_retval(), lhs / rhs);
} else {
py_newnotimplemented(py_retval());

View File

@ -54,19 +54,8 @@ assert eq(float("123.456"), 123.456)
inf = float("inf")
try:
assert 1/0 == inf
exit(1)
except ZeroDivisionError:
pass
try:
assert -1/0 == -inf
exit(1)
except ZeroDivisionError:
pass
assert 1/inf == 0
assert -1/inf == 0

View File

@ -8,8 +8,6 @@ def test(data: bytes):
compressed = lz4.compress(data)
decompressed = lz4.decompress(compressed)
assert data == decompressed
if len(data) == 0:
return 0
return len(compressed) / len(data)
test(b'')