X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/eb6a4098a0f2e9ae55e72ad960b3dfc134d177c9..d14a1e28567de23c586bc80017073d0c39f8d18f:/wxPython/wx/py/wxd/d_wx.py diff --git a/wxPython/wx/py/wxd/d_wx.py b/wxPython/wx/py/wxd/d_wx.py new file mode 100644 index 0000000000..f837473463 --- /dev/null +++ b/wxPython/wx/py/wxd/d_wx.py @@ -0,0 +1,17 @@ +"""Decorator utility for documentation and shell scripting. + +When you import wx from this module, all of the classes get decorated +with docstrings from our decoration class definitions. +""" + +__author__ = "Patrick K. O'Brien " +__cvsid__ = "$Id$" +__revision__ = "$Revision$"[11:-2] + +from wxPython import wx + +import wx_ + +import decorator + +decorator.decorate(real=wx, decoration=wx_)