Merge pull request #2437 from radarhere/health

Health fixes
This commit is contained in:
Hugo 2017-03-03 13:34:25 +02:00 committed by GitHub
commit d03dde989d
16 changed files with 15 additions and 37 deletions

View File

@ -25,7 +25,7 @@ import io
import os
import sys
from . import Image, ImageFile
from ._binary import i32le as i32, o32le as o32
from ._binary import i32le as i32
__version__ = "0.5"
@ -84,7 +84,6 @@ def Ghostscript(tile, size, fp, scale=1):
float((72.0 * size[1]) / (bbox[3]-bbox[1])))
# print("Ghostscript", scale, size, orig_size, bbox, orig_bbox, res)
import os
import subprocess
import tempfile

View File

@ -508,7 +508,6 @@ def _save_netpbm(im, fp, filename):
import os
from subprocess import Popen, check_call, PIPE, CalledProcessError
import tempfile
file = im._dump()
with open(filename, 'wb') as f:

View File

@ -39,7 +39,7 @@ import struct
import io
import warnings
from . import Image, ImageFile, TiffImagePlugin
from ._binary import i8, o8, i16be as i16, i32be as i32
from ._binary import i8, o8, i16be as i16
from .JpegPresets import presets
from ._util import isStringType

View File

@ -37,7 +37,7 @@ import zlib
import struct
from . import Image, ImageFile, ImagePalette
from ._binary import i8, i16be as i16, i32be as i32, o8, o16be as o16, o32be as o32
from ._binary import i8, i16be as i16, i32be as i32, o16be as o16, o32be as o32
__version__ = "0.9"

View File

@ -37,7 +37,8 @@ class SunImageFile(ImageFile.ImageFile):
def _open(self):
# The Sun Raster file header is 32 bytes in length and has the following format:
# The Sun Raster file header is 32 bytes in length
# and has the following format:
# typedef struct _SunRaster
# {

View File

@ -18,7 +18,7 @@
from . import Image, ImageFile, ImagePalette
from ._binary import i8, i16le as i16, o8, o16le as o16, o32le as o32
from ._binary import i8, i16le as i16, o8, o16le as o16
__version__ = "0.3"

View File

@ -1168,7 +1168,7 @@ class TiffImageFile(ImageFile.ImageFile):
self.info["dpi"] = xres, yres
elif resunit == 3: # dots per centimeter. convert to dpi
self.info["dpi"] = xres * 2.54, yres * 2.54
elif resunit == None: # used to default to 1, but now 2)
elif resunit is None: # used to default to 1, but now 2)
self.info["dpi"] = xres, yres
# For backward compatibility, we also preserve the old behavior.
self.info["resolution"] = xres, yres

View File

@ -167,7 +167,6 @@ class PillowTestCase(unittest.TestCase):
outfile = self.tempfile("temp.png")
if command_succeeds([IMCONVERT, f, outfile]):
from PIL import Image
return Image.open(outfile)
raise IOError()
@ -179,7 +178,6 @@ py3 = (sys.version_info >= (3, 0))
def fromstring(data):
from io import BytesIO
from PIL import Image
return Image.open(BytesIO(data))
@ -191,7 +189,6 @@ def tostring(im, string_format, **options):
def hopper(mode=None, cache={}):
from PIL import Image
if mode is None:
# Always return fresh not-yet-loaded version of image.
# Operations on not-yet-loaded images is separate class of errors

View File

@ -32,7 +32,7 @@ class TestFileFitsStub(PillowTestCase):
im = Image.open(TEST_FILE)
# Act / Assert: stub cannot load without an implemented handler
self.assertRaises(IOError, lambda: im.load())
self.assertRaises(IOError, im.load)
def test_save(self):
# Arrange

View File

@ -90,8 +90,6 @@ class TestFileGif(PillowTestCase):
check(256, 511, 256)
def test_optimize_full_l(self):
from io import BytesIO
im = Image.frombytes("L", (16, 16), bytes(bytearray(range(256))))
test_file = BytesIO()
im.save(test_file, "GIF", optimize=True)
@ -425,7 +423,7 @@ class TestFileGif(PillowTestCase):
reloaded = Image.open(out)
self.assertEqual(reloaded.info['transparency'], 253)
if __name__ == '__main__':
unittest.main()

View File

@ -32,7 +32,7 @@ class TestFileHdf5Stub(PillowTestCase):
im = Image.open(TEST_FILE)
# Act / Assert: stub cannot load without an implemented handler
self.assertRaises(IOError, lambda: im.load())
self.assertRaises(IOError, im.load)
def test_save(self):
# Arrange

View File

@ -1,4 +1,4 @@
from helper import unittest, PillowTestCase, hopper, py3
from helper import unittest, PillowTestCase, hopper
from helper import djpeg_available, cjpeg_available
from io import BytesIO
@ -32,11 +32,11 @@ class TestFileJpeg(PillowTestCase):
""" Generates a very hard to compress file
:param size: tuple
:param mode: optional image mode
"""
return Image.frombytes(mode, size,
os.urandom(size[0]*size[1]*len(mode)))
def test_sanity(self):
# internal version number
@ -176,7 +176,7 @@ class TestFileJpeg(PillowTestCase):
f = BytesIO()
im = self.gen_random_image((256,256), 'CMYK')
im.save(f, format='JPEG', progressive=True, quality=94)
def test_large_exif(self):
# https://github.com/python-pillow/Pillow/issues/148
f = self.tempfile('temp.jpg')

View File

@ -564,20 +564,6 @@ class TestFileLibTiff(LibTiffTestCase):
# Should not raise UnicodeDecodeError or anything else
im.save(outfile)
def test_page_number_x_0(self):
# Issue 973
# Test TIFF with tag 297 (Page Number) having value of 0 0.
# The first number is the current page number.
# The second is the total number of pages, zero means not available.
outfile = self.tempfile("temp.tif")
# Created by printing a page in Chrome to PDF, then:
# /usr/bin/gs -q -sDEVICE=tiffg3 -sOutputFile=total-pages-zero.tif
# -dNOPAUSE /tmp/test.pdf -c quit
infile = "Tests/images/total-pages-zero.tif"
im = Image.open(infile)
# Should not divide by zero
im.save(outfile)
if __name__ == '__main__':
unittest.main()

View File

@ -1,6 +1,5 @@
from helper import unittest, PillowTestCase
from PIL import Image
from io import BytesIO
class TestFileWmf(PillowTestCase):

View File

@ -343,7 +343,7 @@ class TestImageCms(PillowTestCase):
]
chans = []
bands = ImageMode.getmode(mode).bands
for band_ndx, band in enumerate(bands):
for band_ndx in range(len(bands)):
channel_type = 'L' # 8-bit unorm
channel_pattern = hopper(channel_type)

View File

@ -58,7 +58,6 @@ class TestImageSequence(PillowTestCase):
for frame in ImageSequence.Iterator(im):
if firstFrame is None:
firstFrame = frame.copy()
pass
for frame in ImageSequence.Iterator(im):
self.assert_image_equal(frame, firstFrame)
break