diff options
author | Guido van Rossum <guido@python.org> | 1998-03-26 19:42:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1998-03-26 19:42:58 (GMT) |
commit | 41360a4696f488e49e5409b3b1baf1fff6ae0044 (patch) | |
tree | 9c9b73b7446cc9fc36e09038bf26d889bb5b6f24 /Lib/test/test_gl.py | |
parent | cd0f59ea0824ad6f897f05c2db4d4471e47e6063 (diff) | |
download | cpython-41360a4696f488e49e5409b3b1baf1fff6ae0044.zip cpython-41360a4696f488e49e5409b3b1baf1fff6ae0044.tar.gz cpython-41360a4696f488e49e5409b3b1baf1fff6ae0044.tar.bz2 |
Mass check-in after untabifying all files that need it.
Diffstat (limited to 'Lib/test/test_gl.py')
-rwxr-xr-x | Lib/test/test_gl.py | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/Lib/test/test_gl.py b/Lib/test/test_gl.py index d4e4d28..1010b6f 100755 --- a/Lib/test/test_gl.py +++ b/Lib/test/test_gl.py @@ -85,67 +85,67 @@ def main(): # insure that we at least have an X display before continuing. import os try: - display = os.environ['DISPLAY'] + display = os.environ['DISPLAY'] except: - # Raise ImportError because regrtest.py handles it specially. - raise ImportError, "No $DISPLAY -- skipping gl test" + # Raise ImportError because regrtest.py handles it specially. + raise ImportError, "No $DISPLAY -- skipping gl test" # touch all the attributes of gl without doing anything if verbose: - print 'Touching gl module attributes...' + print 'Touching gl module attributes...' for attr in glattrs: - if verbose: - print 'touching: ', attr - getattr(gl, attr) + if verbose: + print 'touching: ', attr + getattr(gl, attr) # create a small 'Crisscross' window if verbose: - print 'Creating a small "CrissCross" window...' - print 'foreground' + print 'Creating a small "CrissCross" window...' + print 'foreground' gl.foreground() if verbose: - print 'prefposition' + print 'prefposition' gl.prefposition(500, 900, 500, 900) if verbose: - print 'winopen "CrissCross"' + print 'winopen "CrissCross"' w = gl.winopen('CrissCross') if verbose: - print 'clear' + print 'clear' gl.clear() if verbose: - print 'ortho2' + print 'ortho2' gl.ortho2(0.0, 400.0, 0.0, 400.0) if verbose: - print 'color WHITE' + print 'color WHITE' gl.color(GL.WHITE) if verbose: - print 'color RED' + print 'color RED' gl.color(GL.RED) if verbose: - print 'bgnline' + print 'bgnline' gl.bgnline() if verbose: - print 'v2f' + print 'v2f' gl.v2f(0.0, 0.0) gl.v2f(400.0, 400.0) if verbose: - print 'endline' + print 'endline' gl.endline() if verbose: - print 'bgnline' + print 'bgnline' gl.bgnline() if verbose: - print 'v2i' + print 'v2i' gl.v2i(400, 0) gl.v2i(0, 400) if verbose: - print 'endline' + print 'endline' gl.endline() if verbose: - print 'Displaying window for 2 seconds...' + print 'Displaying window for 2 seconds...' time.sleep(2) if verbose: - print 'winclose' + print 'winclose' gl.winclose(w) main() |