stackless python on GUI?

Has anyone ever used stackless python as an alternate to threading on
their wxpython GUI before?

I've not, but conceptually what stackless offers is no different from
what PEP 342 offers with extended generators:
PEP 342 – Coroutines via Enhanced Generators | peps.python.org . Regardless, I'm not sure
that you really want to replace app.MainLoop() with something else.
If you're think that you are not able to solve your problem with
threads and queues (optionally with wx.CallAfter and wx.PostEvent), or
multiprocessing (and queues), or something utilizing your own
wx.Timer()-based polling of non-GUI stuff, then you're thinking too
hard about the problem.

- Josiah

···

On Mon, Jun 29, 2009 at 3:50 PM, workspace_qle<qle@extron.com> wrote:

Has anyone ever used stackless python as an alternate to threading on
their wxpython GUI before?
>