wxpython 你们出现这样的警告吗

wxpython 你们出现这样的警告吗

Warning (from warnings module):
  File "C:/Python25/cs.py", line 1
    from wxPython.wx import *
DeprecationWarning: The wxPython compatibility package is no longer automatically generated or actively maintained.  Please switch to the wx package as soon as possible.
界面还是可以生成
这是为什么呀
这是非常好的导入方式了,现在的建议是

import wx

所有的使用都使用 wx.XXX 这样的方式.
from wxPython.wx import *这样的包导入方式好像不是很好吧。