summaryrefslogtreecommitdiff
path: root/docutils/readers/python
diff options
context:
space:
mode:
Diffstat (limited to 'docutils/readers/python')
-rw-r--r--docutils/readers/python/moduleparser.py4
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."""