Hi everyone,

I can get pyglet to exit silently with the following test case:

<code>
from multiprocessing import Process
import pyglet
from pyglet.gl import *

def myProcess():
    w = pyglet.window.Window()
    pyglet.app.run()

p = Process(target = myProcess)
p.start()
while p.is_alive():
    pass
</code>

I can get it to work if I change the gl import to :

from pyglet import gl

But I have another, more complicated piece of code in which this
solution does not work, and I don't know how to debug it because it
just quietly exits.

Thanks for any help.

Rye










-- 
You received this message because you are subscribed to the Google Groups 
"pyglet-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/pyglet-users?hl=en.

Reply via email to