Revert "Fix broken py3 tests"

This reverts commit 0c47ce00b1.
This commit is contained in:
Alex Clark 2014-06-09 20:56:29 -04:00
parent 0c47ce00b1
commit 7a866e7431
54 changed files with 54 additions and 54 deletions

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image
import os import os

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import FontFile, BdfFontFile from PIL import FontFile, BdfFontFile

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image
from PIL import ImageFilter from PIL import ImageFilter

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
class TestImage(PillowTestCase): class TestImage(PillowTestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
class TestImageGetExtrema(PillowTestCase): class TestImageGetExtrema(PillowTestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena, py3 from helper import unittest, PillowTestCase, lena, py3
class TestImageGetIm(PillowTestCase): class TestImageGetIm(PillowTestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
class TestImageGetPalette(PillowTestCase): class TestImageGetPalette(PillowTestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
class TestImageHistogram(PillowTestCase): class TestImageHistogram(PillowTestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
class TestImage(PillowTestCase): class TestImage(PillowTestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
import sys import sys

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import ImagePalette from PIL import ImagePalette

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
class TestImageResize(PillowTestCase): class TestImageResize(PillowTestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
class TestImageRotate(PillowTestCase): class TestImageRotate(PillowTestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
class TestImageThumbnail(PillowTestCase): class TestImageThumbnail(PillowTestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena, fromstring from helper import unittest, PillowTestCase, lena, fromstring
class TestImage(PillowTestCase): class TestImage(PillowTestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, lena from helper import unittest, lena
class TestImageToBytes(unittest.TestCase): class TestImageToBytes(unittest.TestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image
from PIL import ImageChops from PIL import ImageChops

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, lena from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image
from PIL import ImageColor from PIL import ImageColor

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image
from PIL import ImageColor from PIL import ImageColor

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image
from PIL import ImageEnhance from PIL import ImageEnhance

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena, tostring from helper import unittest, PillowTestCase, lena, tostring
from PIL import Image from PIL import Image
from PIL import ImageFileIO from PIL import ImageFileIO

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import ImageFilter from PIL import ImageFilter

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image
from PIL import ImageDraw from PIL import ImageDraw

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
try: try:
from PIL import ImageGrab from PIL import ImageGrab

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image
from PIL import ImageMath from PIL import ImageMath

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import ImageMode from PIL import ImageMode

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import ImageOps from PIL import ImageOps

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image
from PIL import ImageShow from PIL import ImageShow

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image
from PIL import ImageStat from PIL import ImageStat

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
class TestImageTk(PillowTestCase): class TestImageTk(PillowTestCase):

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image
from PIL import ImageTransform from PIL import ImageTransform

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image
from PIL import ImageWin from PIL import ImageWin

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase from helper import unittest, PillowTestCase
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, py3 from helper import unittest, PillowTestCase, py3
from PIL import Image from PIL import Image

View File

@ -1,4 +1,4 @@
from test.helper import unittest, PillowTestCase, lena from helper import unittest, PillowTestCase, lena
from PIL import Image from PIL import Image