Added missing future print imports and removed unnecessary imports

This commit is contained in:
Andrew Murray 2015-05-23 20:28:41 +10:00
parent 77f7cfd370
commit 4e2de9d9ed
14 changed files with 15 additions and 5 deletions

View File

@ -25,8 +25,6 @@
# See the README file for information on usage and redistribution. # See the README file for information on usage and redistribution.
# #
from __future__ import print_function
from PIL import Image from PIL import Image
from PIL._util import isDirectory, isPath from PIL._util import isDirectory, isPath
import os import os

View File

@ -15,8 +15,6 @@
# See the README file for information on usage and redistribution. # See the README file for information on usage and redistribution.
# #
from __future__ import print_function
from PIL import EpsImagePlugin from PIL import EpsImagePlugin

View File

@ -25,7 +25,7 @@
# See the README file for information on usage and redistribution. # See the README file for information on usage and redistribution.
# #
__version__ = "0.6" from __future__ import print_function
from PIL import Image, ImageFile, ImagePalette, _binary from PIL import Image, ImageFile, ImagePalette, _binary
@ -33,6 +33,8 @@ i8 = _binary.i8
i16 = _binary.i16le i16 = _binary.i16le
o8 = _binary.o8 o8 = _binary.o8
__version__ = "0.6"
def _accept(prefix): def _accept(prefix):
return i8(prefix[0]) == 10 and i8(prefix[1]) in [0, 2, 3, 5] return i8(prefix[0]) == 10 and i8(prefix[1]) in [0, 2, 3, 5]

View File

@ -1,3 +1,4 @@
from __future__ import print_function
import base64 import base64
import os import os
import sys import sys

View File

@ -1,3 +1,4 @@
from __future__ import print_function
import sys import sys
sys.path.insert(0, ".") sys.path.insert(0, ".")

View File

@ -1,5 +1,7 @@
# brute-force search for access descriptor hash table # brute-force search for access descriptor hash table
from __future__ import print_function
modes = [ modes = [
"1", "1",
"L", "LA", "L", "LA",

View File

@ -1,3 +1,4 @@
from __future__ import print_function
from helper import unittest, PillowTestCase, hopper, py3 from helper import unittest, PillowTestCase, hopper, py3
import os import os

View File

@ -1,3 +1,4 @@
from __future__ import print_function
from helper import unittest, PillowTestCase, hopper, py3 from helper import unittest, PillowTestCase, hopper, py3
from PIL import Image, TiffImagePlugin from PIL import Image, TiffImagePlugin

View File

@ -1,3 +1,4 @@
from __future__ import print_function
from helper import unittest, PillowTestCase, hopper from helper import unittest, PillowTestCase, hopper
from PIL import Image from PIL import Image

View File

@ -1,3 +1,4 @@
from __future__ import print_function
from helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image

View File

@ -1,3 +1,4 @@
from __future__ import print_function
from helper import unittest, PillowTestCase, hopper from helper import unittest, PillowTestCase, hopper
from PIL import Image from PIL import Image

View File

@ -1,3 +1,4 @@
from __future__ import print_function
from PIL import Image from PIL import Image
import io import io

View File

@ -1,3 +1,4 @@
from __future__ import print_function
from PIL import Image from PIL import Image

View File

@ -1,6 +1,7 @@
# A monkey patch of the base distutils.ccompiler to use parallel builds # A monkey patch of the base distutils.ccompiler to use parallel builds
# Tested on 2.7, looks to be identical to 3.3. # Tested on 2.7, looks to be identical to 3.3.
from __future__ import print_function
from multiprocessing import Pool, cpu_count from multiprocessing import Pool, cpu_count
from distutils.ccompiler import CCompiler from distutils.ccompiler import CCompiler
import os import os