diff options
author | Guido van Rossum <guido@python.org> | 1992-08-19 16:42:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-08-19 16:42:53 (GMT) |
commit | 3af03d8f3ed9ba6035c119908c85c8bfe1d37822 (patch) | |
tree | 660f9dbbbea4f908fd34736dd2fb24e1f6684836 /Modules/cgen.py | |
parent | f9a2d33f014a8de414da4aa9a464d7a5318f4876 (diff) | |
download | cpython-3af03d8f3ed9ba6035c119908c85c8bfe1d37822.zip cpython-3af03d8f3ed9ba6035c119908c85c8bfe1d37822.tar.gz cpython-3af03d8f3ed9ba6035c119908c85c8bfe1d37822.tar.bz2 |
don't call gl.foreground and create a new window after all (seems to
break window positions in .Xdefaults)
Diffstat (limited to 'Modules/cgen.py')
-rw-r--r-- | Modules/cgen.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Modules/cgen.py b/Modules/cgen.py index 2775d3d..d6e9c96 100644 --- a/Modules/cgen.py +++ b/Modules/cgen.py @@ -459,8 +459,4 @@ print print 'initgl()' print '{' print '\tinitmodule("gl", gl_methods);' -print '\t/* Initialize GL and don\'t go in the background */' -print '\tforeground();' -print '\tnoport();' -print '\twinopen("");' print '}' |