Merge pull request #1240 from radarhere/future

Correct future print imports
This commit is contained in:
Hugo 2015-05-27 14:37:38 +03:00
commit 394b245a39
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.
#
from __future__ import print_function
from PIL import Image
from PIL._util import isDirectory, isPath
import os

View File

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

View File

@ -25,7 +25,7 @@
# 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
@ -33,6 +33,8 @@ i8 = _binary.i8
i16 = _binary.i16le
o8 = _binary.o8
__version__ = "0.6"
def _accept(prefix):
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 os
import sys

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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