summaryrefslogtreecommitdiffstats
path: root/Demo
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-10-09 13:26:01 (GMT)
committerGuido van Rossum <guido@python.org>1998-10-09 13:26:01 (GMT)
commit1e57a04301355bec43044951d57c316e7d3ffc5b (patch)
tree13627be84a61a218951bbd8c28d8cc8c70254d26 /Demo
parent1d5766fd1a60a5c936287f4c88ba2c741799dc5b (diff)
downloadcpython-1e57a04301355bec43044951d57c316e7d3ffc5b.zip
cpython-1e57a04301355bec43044951d57c316e7d3ffc5b.tar.gz
cpython-1e57a04301355bec43044951d57c316e7d3ffc5b.tar.bz2
Removed unnecessary import of cl and CL. (Sjoerd)
Diffstat (limited to 'Demo')
-rwxr-xr-xDemo/sgi/video/imgconv.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/Demo/sgi/video/imgconv.py b/Demo/sgi/video/imgconv.py
index 291fdc8..8fc98b4 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'