Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前在 python 中使用一个运行良好的应用程序,但是当我用 py2exe 转换它时,应用程序似乎在第一个“reactor.iterate”处暂停
每次我按 Ctrl+C 停止应用程序时,错误总是相同的,应用程序似乎被“reactor.iterate(4)”阻塞
普通的 python 解释器永远不会出现这个问题。
你有想法吗?
反应堆的典型用途是不调用reactor.iterate. 很难说为什么你会在没有看到你的程序的情况下得到你现在的行为,但是为了大胆猜测,我会说切换到reactor.run可能会有所帮助。
reactor.iterate
reactor.run