diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1994-12-21 15:46:26 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1994-12-21 15:46:26 (GMT) |
commit | 31b7727bad6ba50feaf597a823c41c1a923e7855 (patch) | |
tree | cfd2521f3b11759159dd832044bae82bb4db87fe /Demo/sgi | |
parent | 3ff444992ffe9a64a96560af1147560803092069 (diff) | |
download | cpython-31b7727bad6ba50feaf597a823c41c1a923e7855.zip cpython-31b7727bad6ba50feaf597a823c41c1a923e7855.tar.gz cpython-31b7727bad6ba50feaf597a823c41c1a923e7855.tar.bz2 |
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".
Diffstat (limited to 'Demo/sgi')
-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 bb9857f..d6c9fc4 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 |