Skip to content

Commit 827295c

Browse files
committed
Drop some workarounds for GraalPy
See #232
1 parent c12ffba commit 827295c

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

tests/test_mpz.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -517,8 +517,6 @@ def test_divmod_bulk(x, y):
517517
with pytest.raises(ZeroDivisionError):
518518
x % my
519519
return
520-
if y < 0 and platform.python_implementation() == "GraalVM":
521-
return # issue oracle/graalpython#534
522520
r = x // y
523521
assert mx // my == r
524522
assert mx // y == r
@@ -718,8 +716,6 @@ def test_power_errors():
718716
pow(mpz(10**1000), 1j)
719717
with pytest.raises(TypeError):
720718
pow(object(), mpz(321))
721-
if platform.python_implementation() == "GraalVM":
722-
return # issue oracle/graalpython#551
723719
with pytest.raises(OverflowError):
724720
pow(mpz(2), mpz(1<<64))
725721
if BITCNT_MAX < (1<<64) - 1:

0 commit comments

Comments
 (0)