我们可以在 nuitka 或 cython 中使用 pyqt 线程吗?
Can we use pyqt threads in nuitka or cython?
我知道 nuitka 和 cython 由于 gil 而在 python 线程中存在问题。
一些解释 here 可以在 cython with nogil
中使用,但我在 nuitka 中找不到任何示例或者使用 qt 线程。
有人有这方面的经验吗?
with nogil
在 cython 中与 pyqt 配合良好,但在 nuitka 中存在问题,因为 here
我知道 nuitka 和 cython 由于 gil 而在 python 线程中存在问题。
一些解释 here 可以在 cython with nogil
中使用,但我在 nuitka 中找不到任何示例或者使用 qt 线程。
有人有这方面的经验吗?
with nogil
在 cython 中与 pyqt 配合良好,但在 nuitka 中存在问题,因为 here