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