Removed unnecessary import of cl and CL. (Sjoerd)

This commit is contained in:
Guido van Rossum 1998-10-09 13:26:01 +00:00
parent 1d5766fd1a
commit 1e57a04301

View file

@ -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'