Files
wxWidgets/wxPython/wx/lib/activexwrapper.py
2003-06-12 22:55:41 +00:00

16 lines
351 B
Python

"""Provides a way to drop the wx prefix from wxPython objects."""
__author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
__cvsid__ = "$Id$"
__revision__ = "$Revision$"[11:-2]
import wx
from wx import prefix
from wxPython.lib import activexwrapper
prefix.rename(d_new=globals(), d_old=activexwrapper.__dict__)
del activexwrapper
del prefix
del wx