remove old comment

The original bug this was referring to seems to have been lost, but it looks to have been something to do with Python 2/3 compatibility and big numbers.
See commit c8ce29c239 and https://github.com/python-pillow/Pillow/issues/7991.
This commit is contained in:
Yay295 2024-04-17 16:20:16 -05:00
parent c18d17ac70
commit 1a29485ea4

View File

@ -70,8 +70,6 @@ def test_getdata_roundtrip(
),
)
def test_putdata_long_integers(value: int, pixel: tuple[int, int, int, int]) -> None:
# see bug-200802-systemerror
im = Image.new("RGBA", (1, 1))
im.putdata([value])
assert im.getpixel((0, 0)) == pixel