home *** CD-ROM | disk | FTP | other *** search
/ Big Green CD 8 / BGCD_8_Dev.iso / OPENSTEP / Languages / Python / python-14-src / Demo / sgi / video / Vstat.py < prev    next >
Encoding:
Python Source  |  1997-01-17  |  377 b   |  24 lines

  1. #! /ufs/guido/bin/sgi/python
  2.  
  3. # Print the value of all video parameters
  4.  
  5. import sys
  6. import sv, SV
  7.  
  8. def main():
  9.     v = sv.OpenVideo()
  10.     for name in dir(SV):
  11.         const = getattr(SV, name)
  12.         if type(const) is type(0):
  13.             sys.stdout.flush()
  14.             params = [const, 0]
  15.             try:
  16.                 v.GetParam(params)
  17.             except sv.error, msg:
  18. ##                print name, msg
  19.                 continue
  20.             print name, params
  21.  
  22. main()
  23.  
  24.