From 1a29485ea44a3847a7b84e8152a62744a8edeb95 Mon Sep 17 00:00:00 2001 From: Yay295 Date: Wed, 17 Apr 2024 16:20:16 -0500 Subject: [PATCH] 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 c8ce29c23903b5145ed0e1a23804e7e99faa5eb8 and https://github.com/python-pillow/Pillow/issues/7991. --- Tests/test_image_getdata_putdata.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Tests/test_image_getdata_putdata.py b/Tests/test_image_getdata_putdata.py index d073769a5..06116df1b 100644 --- a/Tests/test_image_getdata_putdata.py +++ b/Tests/test_image_getdata_putdata.py @@ -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