]>
Commit | Line | Data |
---|---|---|
1e4a197e RD |
1 | """Decorator utility for documentation and shell scripting. |
2 | ||
3 | When you import stc from this module, all of the classes get decorated | |
4 | with docstrings from our decoration class definitions. | |
5 | """ | |
6 | ||
7 | __author__ = "Patrick K. O'Brien <pobrien@orbtech.com>" | |
8 | __cvsid__ = "$Id$" | |
9 | __revision__ = "$Revision$"[11:-2] | |
10 | ||
11 | from wxPython import stc | |
12 | ||
13 | import stc_ | |
14 | ||
15 | import decorator | |
16 | ||
17 | decorator.decorate(real=stc, decoration=stc_) |