On 2007-02-20, cyberco <[EMAIL PROTECTED]> 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            
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to