From 013a73dfe23cd1406304b15d7e115f17dbc9d051 Mon Sep 17 00:00:00 2001 From: Yifu Yu Date: Fri, 7 Nov 2014 20:39:18 +0800 Subject: [PATCH] Remove unused StringIO. StringIO does not exists on py3, which leads to failure of building. --- Tests/test_imagefont_bitmap.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Tests/test_imagefont_bitmap.py b/Tests/test_imagefont_bitmap.py index c91908983..d567b73f0 100644 --- a/Tests/test_imagefont_bitmap.py +++ b/Tests/test_imagefont_bitmap.py @@ -1,6 +1,4 @@ from helper import unittest, PillowTestCase -import StringIO - from PIL import Image, ImageFont, ImageDraw class TestImageFontBitmap(PillowTestCase):