From: Guido van Rossum Date: Fri, 9 Oct 1998 13:26:01 +0000 (+0000) Subject: Removed unnecessary import of cl and CL. (Sjoerd) X-Git-Tag: v1.5.2a2~80 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e57a04301355bec43044951d57c316e7d3ffc5b;p=python Removed unnecessary import of cl and CL. (Sjoerd) --- diff --git a/Demo/sgi/video/imgconv.py b/Demo/sgi/video/imgconv.py index 291fdc8125..8fc98b4abb 100755 --- a/Demo/sgi/video/imgconv.py +++ b/Demo/sgi/video/imgconv.py @@ -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'