diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1994-12-21 15:46:26 +0000 |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1994-12-21 15:46:26 +0000 |
commit | 8476e0af56b0c2312030916a67cc5cf9e15a0f62 (patch) | |
tree | 0025d9aff49075047a4aec5b86677410b95be713 | |
parent | cce4e8a425907f485e1b85770a1f118659bcee67 (diff) | |
download | cpython-8476e0af56b0c2312030916a67cc5cf9e15a0f62.tar.gz |
Ported the editor to X. The GL version won't work.
This version needs Jack's img module and Sjoerd's new and improved (?)
X extensions for Python.
The last GL version is still available using the CVS tag "gl-editor".
-rwxr-xr-x | Demo/sgi/video/VFile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demo/sgi/video/VFile.py b/Demo/sgi/video/VFile.py index bb9857f048..d6c9fc4662 100755 --- a/Demo/sgi/video/VFile.py +++ b/Demo/sgi/video/VFile.py @@ -21,10 +21,10 @@ import sys try: import gl import GL + import GET no_gl = 0 except ImportError: no_gl = 1 -import GET import colorsys import imageop |