Update of /cvsroot/docstring/dps/dps
In directory usw-pr-cvs1:/tmp/cvs-serv26792/dps/dps
Modified Files:
utils.py
Log Message:
- Removed Reporter.strong_system_warning as unneeded.
Index: utils.py
===================================================================
RCS file: /cvsroot/docstring/dps/dps/utils.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** utils.py 2001/09/17 03:54:29 1.6
--- utils.py 2001/09/18 04:32:12 1.7
***************
*** 58,68 ****
def severe(self, comment=None, children=[]):
return self.system_warning(3, comment, children)
-
- def strong_system_warning(self, admonition, comment, sourcetext=None):
- p = nodes.paragraph()
- p += nodes.strong('', admonition)
- p += nodes.Text(': ' + comment)
- children = [p]
- if sourcetext:
- children.append(nodes.literal_block('', sourcetext))
- return self.system_warning(3, children=children)
--- 58,59 ----
|