Update of /cvsroot/happydoc/HappyDoc3/happydoclib/docstring
In directory sc8-pr-cvs1:/tmp/cvs-serv29971/happydoclib/docstring
Modified Files:
docstring_StructuredText.py
Log Message:
Change trace level for this module.
Index: docstring_StructuredText.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc3/happydoclib/docstring/docstring_StructuredText.py,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** docstring_StructuredText.py 17 Nov 2002 00:26:19 -0000 1.1.1.1
--- docstring_StructuredText.py 1 Jan 2003 14:06:38 -0000 1.2
***************
*** 67,70 ****
--- 67,72 ----
#
+ TRACE_LEVEL=3
+
def entryPoint():
"Return information about this module to the dynamic loader."
***************
*** 267,270 ****
--- 269,273 ----
args=args,
namedArgs=namedArgs,
+ outputLevel=TRACE_LEVEL,
)
self._testOutputFormat(outputFormat)
***************
*** 274,278 ****
namedArgs,
)
! happydoclib.TRACE.write('AFTER QUOTING="%s"' % html_quoted)
#
# Replace form: ".*":
--- 277,282 ----
namedArgs,
)
! happydoclib.TRACE.write('AFTER QUOTING="%s"' % html_quoted,
! outputLevel=TRACE_LEVEL)
#
# Replace form: ".*":
***************
*** 285,293 ****
'"\\1":',
html_quoted)
! happydoclib.TRACE.write('AFTER FIXUP="%s"' % html_quoted)
! happydoclib.TRACE.outof()
return html_quoted
! happydoclib.TRACE.outof()
return inputText
--- 289,298 ----
'"\\1":',
html_quoted)
! happydoclib.TRACE.write('AFTER FIXUP="%s"' % html_quoted,
! outputLevel=TRACE_LEVEL)
! happydoclib.TRACE.outof(outputLevel=TRACE_LEVEL)
return html_quoted
! happydoclib.TRACE.outof(outputLevel=TRACE_LEVEL)
return inputText
|