Passing wxPython objects as multiprocessor arguments

后端 未结 1 1356
有刺的猬
有刺的猬 2021-01-21 15:45

I\'m currently writing a program in python with a gui using wxpython. The program has a function which evaluates several pythonscripts and will therefore hang up the gui. I am t

相关标签:
1条回答
  • 2021-01-21 16:14

    Basically, you can't. You need to pass the results back and let the GUI thread update the listctrl and textctrl.

    See this mailing list thread for information about the pickling error.

    0 讨论(0)
提交回复
热议问题