git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24541 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
9 lines
232 B
Python
9 lines
232 B
Python
## This file reverse renames symbols in the wx package to give
|
|
## them their wx prefix again, for backwards compatibility.
|
|
|
|
import wx.lib.stattext
|
|
|
|
__doc__ = wx.lib.stattext.__doc__
|
|
|
|
wxGenStaticText = wx.lib.stattext.GenStaticText
|