wxPython: non-GUI thread launching new frame? Delegates?

Grant Edwards grante at visi.com
Tue Feb 20 15:22:03 EST 2007


On 2007-02-20, cyberco <cyberco at gmail.com> wrote:
> Ah! Great tip, thanks!
> Now instead of calling:
>
> parent.onRequest(param)
>
> I call:
>
> wx.CallAfter(lambda x: parent.onRequest(x), param)

How does that differ from this?

  wx.CallAfter(parent.onRequest, param)

-- 
Grant Edwards                   grante             Yow!  .. Everything
                                  at               is....FLIPPING AROUND!!
                               visi.com            



More information about the Python-list mailing list