Merge pull request #694 from hugovk/floodfill

Skip test_floodfill_border() on PyPy to avoid fatal error
This commit is contained in:
Alex Clark ☺ 2014-06-07 08:50:48 -04:00
commit 8beb66443b

View File

@ -246,6 +246,11 @@ def test_floodfill():
def test_floodfill_border():
# floodfill() is experimental
if hasattr(sys, 'pypy_version_info'):
# Causes fatal RPython error on PyPy
skip()
# Arrange
im = Image.new("RGB", (w, h))
draw = ImageDraw.Draw(im)