首页 > 代码库 > python 报错 wxPyDeprecationWarning: Using deprecated class PySimpleApp.

python 报错 wxPyDeprecationWarning: Using deprecated class PySimpleApp.

如题: python 报错 提示为 : wxPyDeprecationWarning: Using deprecated class PySimpleApp. 

解决: 将 wx.PySimpleApp() 替换为 wx.App(False) 即可。 

参考: http://stackoverflow.com/questions/15144168/error-using-deprecated-class-pysimpleapp-after-removing-epd

本文出自 “CANYU'S PYTHON” 博客,请务必保留此出处http://canyuexiang.blog.51cto.com/8871379/1557096

python 报错 wxPyDeprecationWarning: Using deprecated class PySimpleApp.