From e077229d7a165cade8c3538b3371f344fa28fc38 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 4 Jan 2022 11:32:15 +0200 Subject: [PATCH] Remove readonly from Image.__eq__ --- src/PIL/Image.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/PIL/Image.py b/src/PIL/Image.py index e5ea25fc4..0bafd3907 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -627,7 +627,6 @@ class Image: and self.size == other.size and self.info == other.info and self._category == other._category - and self.readonly == other.readonly and self.getpalette() == other.getpalette() and self.tobytes() == other.tobytes() )