Pillow/Tests/32bit_segfault_check.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
163 B
Python
Raw Normal View History

2023-06-27 07:43:58 +03:00
#!/usr/bin/env python3
from __future__ import annotations
2023-06-27 07:43:58 +03:00
import sys
from PIL import Image
if sys.maxsize < 2**32:
im = Image.new("L", (999999, 999999), 0)