pyglet is completely thread-unsafe; you'll need to manage all locking yourself.
Alex.
> Is it possible to use pyglet and threads together?
Yes, as long as you confine of your Pyglet-related calls to a single thread.
--- Rod
I have, but as with all threaded applications you're opening a can of worms.
Ensure only one thread is doing actual pyglet stuff (rendering, event loop,
etc). See how you go...
Richard