diff options
| author | goodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2003-01-04 00:18:58 +0000 |
|---|---|---|
| committer | goodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2003-01-04 00:18:58 +0000 |
| commit | df2ba997c490308d849dfc5c67f3ed550dd8138c (patch) | |
| tree | a16acd989960ca8e0517aa9f25bcf205e222c63e /docutils/readers/python/moduleparser.py | |
| parent | 9e16185c81fd4ddc140bf6ef1101033b73088efe (diff) | |
| download | docutils-df2ba997c490308d849dfc5c67f3ed550dd8138c.tar.gz | |
docstring
git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@1060 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/readers/python/moduleparser.py')
| -rw-r--r-- | docutils/readers/python/moduleparser.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docutils/readers/python/moduleparser.py b/docutils/readers/python/moduleparser.py index 2262ddbd5..9fcd1ec07 100644 --- a/docutils/readers/python/moduleparser.py +++ b/docutils/readers/python/moduleparser.py @@ -203,6 +203,10 @@ def parse_module(module_text, filename): class Node: + """ + Base class for module documentation tree nodes. + """ + def __init__(self, node): self.children = [] """List of child nodes.""" |
