From b0b7c1acb5cacff5c7a48608c6d02ef0d5ec7a32 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Wed, 20 Nov 2013 22:43:39 -0800 Subject: [PATCH] removed debugging prints --- Tests/test_imageqt.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Tests/test_imageqt.py b/Tests/test_imageqt.py index 36e673a90..73d1f4b1c 100644 --- a/Tests/test_imageqt.py +++ b/Tests/test_imageqt.py @@ -21,7 +21,6 @@ def test_rgb(): def checkrgb(r,g,b): val = ImageQt.rgb(r,g,b) - print val val = val % 2**24 # drop the alpha assert_equal(val >> 16, r) assert_equal(((val >> 8 ) % 2**8), g) @@ -35,5 +34,4 @@ def test_rgb(): def test_image(): for mode in ('1', 'RGB', 'RGBA', 'L', 'P'): - print ( "Testing mode %s" % mode) assert_no_exception(lambda: ImageQt.ImageQt(lena(mode)))