mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-02-04 21:50:54 +03:00
b2a2f16b23
This reverts commit001b46c670
, reversing changes made to8beb66443b
.
13 lines
286 B
Python
13 lines
286 B
Python
from tester import *
|
|
|
|
from PIL import Image
|
|
|
|
def test_copy():
|
|
def copy(mode):
|
|
im = lena(mode)
|
|
out = im.copy()
|
|
assert_equal(out.mode, mode)
|
|
assert_equal(out.size, im.size)
|
|
for mode in "1", "P", "L", "RGB", "I", "F":
|
|
yield_test(copy, mode)
|