Skip to content

Commit

Permalink
Drop workaround for pypy/pypy#5165
Browse files Browse the repository at this point in the history
  • Loading branch information
skirpichev committed Jan 5, 2025
1 parent 88ab11d commit 747adfb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/test_mpz.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,6 @@ def test_mpz_from_bytes(x, length, byteorder, signed):
rx = int.from_bytes(bytes, byteorder, signed=signed)
assert rx == mpz.from_bytes(bytes, byteorder, signed=signed)
assert rx == mpz.from_bytes(bytearray(bytes), byteorder, signed=signed)
if platform.python_implementation() == "PyPy":
return # XXX: pypy/pypy#5165
assert rx == mpz.from_bytes(list(bytes), byteorder, signed=signed)


Expand Down

0 comments on commit 747adfb

Please sign in to comment.