home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyos2bin.zip / Demo / sgi / gl / glstdwin / stdwingl.py < prev    next >
Text File  |  1992-03-30  |  353b  |  11 lines

  1. # If you put 'import stdwin_gl' in front of the main program of a program
  2. # using stdwin (before it has a chance to import the real stdwin!),
  3. # it will use glstdwin and think it is stdwin.
  4.  
  5. import sys
  6. if sys.modules.has_key('stdwin'):
  7.     raise RuntimeError, 'too late -- stdwin has already been imported'
  8.  
  9. import glstdwin
  10. sys.modules['stdwin'] = glstdwin
  11.