主循环中的 PyQt 调试

发布于 2024-08-20 02:21:21 字数 134 浏览 2 评论 0原文

主循环运行时我可以调试 PyQt 应用程序吗? Pdb、NetBeans、PyDev,在执行 sys.exit(app.exec_()) 时都会“冻结”。 我可能错过了一些明显的东西。或者请问可能出现什么问题? 我为我的“令人毛骨悚然”的英语道歉。谢谢。

Can I debug PyQt application when is main loop running ?
Pdb, NetBeans, PyDev, all "freeze" when sys.exit(app.exec_()) is executed.
I probably missing something obvious. Or what can be problem, please ?
I apologize for my "creepy" english. Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里泪两行 2024-08-27 02:21:21

我假设您的 main() 函数看起来像这样:

def __name__ == '__main__':
    app = QtGui.QApplication(sys.argv)
    myapp = MyApplication()
    myapp.show()
    sys.exit(app.exec_())

如果不是,请发布一些示例代码来帮助确定可能出现的错误。

如果您的代码就是这样,您可以使用 IDLE(包含在 Python 安装中)调试程序的任何部分。进入空闲状态后,转到调试-->调试器以打开调试打开。然后打开您的.py文件并运行它(F5) 。您可以通过右键单击文件中的任意行并选择设置断点来设置断点。

检查另一个SO问题以获取更多信息以及替代调试器/IDE的良好链接:

在 Windows 中运行/调试 Python 程序的最简洁方法

I'm assuming your main() function looks something like this:

def __name__ == '__main__':
    app = QtGui.QApplication(sys.argv)
    myapp = MyApplication()
    myapp.show()
    sys.exit(app.exec_())

If not, post some example code to help determine what coudl be wrong.

If that is what your code looks like, you can debug any part of you program using IDLE (included in Python install). Once in IDLE, goto Debug-->Debugger to turn DEBUGGING ON. Then open your .py file, and run it (F5). You can set breakpoints by right-clicking on any line in the file, and choosing Set Breakpoint.

Check this other SO question for more info and good links to alternative debuggers/IDEs:

Cleanest way to run/debug python programs in windows

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文