[py-svn] r35789 - py/dist/py/rest
guido at codespeak.net
guido at codespeak.net
Fri Dec 15 12:52:47 CET 2006
Author: guido
Date: Fri Dec 15 12:52:46 2006
New Revision: 35789
Modified:
py/dist/py/rest/rst.py
Log:
More docstrings.
Modified: py/dist/py/rest/rst.py
==============================================================================
--- py/dist/py/rest/rst.py (original)
+++ py/dist/py/rest/rst.py Fri Dec 15 12:52:46 2006
@@ -146,6 +146,8 @@
return (self.width - 1) * self.char
class Paragraph(AbstractNode):
+ """ simple paragraph """
+
parentclass = Rest
sep = " "
indent = ""
@@ -189,9 +191,13 @@
return "\n".join(outcome)
class SubParagraph(Paragraph):
+ """ indented sub paragraph """
+
indent = " "
class Title(Paragraph):
+ """ title element """
+
parentclass = Rest
belowchar = "="
abovechar = ""
More information about the py-svn
mailing list