d14a1e2856
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24541 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
18 lines
401 B
Python
18 lines
401 B
Python
"""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 <pobrien@orbtech.com>"
|
|
__cvsid__ = "$Id$"
|
|
__revision__ = "$Revision$"[11:-2]
|
|
|
|
from wxPython import wx
|
|
|
|
import wx_
|
|
|
|
import decorator
|
|
|
|
decorator.decorate(real=wx, decoration=wx_)
|