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 ab29b93 commit 444e32fCopy full SHA for 444e32f
testsuite/cases/pillow.py
@@ -5,7 +5,8 @@
5
from .base import BaseTestCase, root
6
7
8
-Image.LANCZOS = Image.ANTIALIAS
+if hasattr(Image, "ANTIALIAS"):
9
+ Image.LANCZOS = Image.ANTIALIAS
10
11
12
class PillowTestCase(BaseTestCase):
0 commit comments