12 lines
260 B
Python
12 lines
260 B
Python
|
|
||
|
"""Renamer stub: provides a way to drop the wx prefix from wxPython objects."""
|
||
|
|
||
|
__cvsid__ = "$Id$"
|
||
|
__revision__ = "$Revision$"[11:-2]
|
||
|
|
||
|
from wx import _rename
|
||
|
from wxPython import grid
|
||
|
_rename(globals(), grid.__dict__, modulename='grid')
|
||
|
del grid
|
||
|
del _rename
|