OK, here's an even easier test case. On a completely un-modified
pyglet 1.2, the following works fine with carbon (dock icon appears
and then stops bouncing, app's menu bar is responsive) but not with
cocoa (bounces forever and app beachballs):

def start_pyglet():
  import pyglet.app
  pyglet.app.event_loop.run()

import threading
t = threading.Thread(target=start_pyglet)
t.setDaemon(True)
t.start()

Anyone have any ideas whatsoever?

-- 
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