主循环中的 PyQt 调试
主循环运行时我可以调试 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您的
main()
函数看起来像这样:如果不是,请发布一些示例代码来帮助确定可能出现的错误。
如果您的代码就是这样,您可以使用 IDLE(包含在 Python 安装中)调试程序的任何部分。进入空闲状态后,转到调试-->调试器以打开
调试打开。
然后打开您的.py文件并运行它(F5) 。您可以通过右键单击文件中的任意行并选择设置断点来设置断点。检查另一个SO问题以获取更多信息以及替代调试器/IDE的良好链接:
在 Windows 中运行/调试 Python 程序的最简洁方法
I'm assuming your
main()
function looks something like this: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