]> granicus.if.org Git - python/commitdiff
Removed unnecessary import of cl and CL. (Sjoerd)
authorGuido van Rossum <guido@python.org>
Fri, 9 Oct 1998 13:26:01 +0000 (13:26 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 9 Oct 1998 13:26:01 +0000 (13:26 +0000)
Demo/sgi/video/imgconv.py

index 291fdc8125deb3a2ff47155b5177cbf8055b79a5..8fc98b4abba182e7e4c2f50e8bd7f231fffe14a9 100755 (executable)
@@ -26,7 +26,6 @@ def jpeggrey2grey(img, width, height):
        return data
 
 def jpeg2rgb(img, width, height):
-       import cl, CL
        import jpeg
        data, width, height, bytesperpixel = jpeg.decompress(img)
        if bytesperpixel <> 4: raise RuntimeError, 'not rgb jpeg'