We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c12ffba commit 827295cCopy full SHA for 827295c
1 file changed
tests/test_mpz.py
@@ -517,8 +517,6 @@ def test_divmod_bulk(x, y):
517
with pytest.raises(ZeroDivisionError):
518
x % my
519
return
520
- if y < 0 and platform.python_implementation() == "GraalVM":
521
- return # issue oracle/graalpython#534
522
r = x // y
523
assert mx // my == r
524
assert mx // y == r
@@ -718,8 +716,6 @@ def test_power_errors():
718
716
pow(mpz(10**1000), 1j)
719
717
with pytest.raises(TypeError):
720
pow(object(), mpz(321))
721
- if platform.python_implementation() == "GraalVM":
722
- return # issue oracle/graalpython#551
723
with pytest.raises(OverflowError):
724
pow(mpz(2), mpz(1<<64))
725
if BITCNT_MAX < (1<<64) - 1:
0 commit comments