【发布时间】:2015-08-22 17:41:54
【问题描述】:
我有一个简单的基于PyQt4 的应用程序。我想用 PyCharm 调试一下。
唉,我崩溃了一个错误:
Process finished with exit code -1073740771 (0xC000041D)
代码如下:
from PyQt4 import QtGui, QtCore
app = QtGui.QApplication([])
win = QtGui.QMainWindow() # Breakpoint is here
win.show()
QtGui.QApplication.instance().exec_()
你不能告诉我,我该怎么做才能应对它吗?
【问题讨论】:
-
在PyCharm bug tracker 上报告。好像是quite common problem。
标签: python debugging pyqt pycharm