[Epydoc-commits] SF.net SVN: epydoc: [1498] trunk/epydoc/src/epydoc/markup
Brought to you by:
edloper
From: <ed...@us...> - 2007-02-14 05:44:15
|
Revision: 1498 http://svn.sourceforge.net/epydoc/?rev=1498&view=rev Author: edloper Date: 2007-02-13 21:43:46 -0800 (Tue, 13 Feb 2007) Log Message: ----------- - Set __docformat__ Modified Paths: -------------- trunk/epydoc/src/epydoc/markup/doctest.py trunk/epydoc/src/epydoc/markup/pyval_repr.py Modified: trunk/epydoc/src/epydoc/markup/doctest.py =================================================================== --- trunk/epydoc/src/epydoc/markup/doctest.py 2007-02-14 05:43:07 UTC (rev 1497) +++ trunk/epydoc/src/epydoc/markup/doctest.py 2007-02-14 05:43:46 UTC (rev 1498) @@ -15,6 +15,7 @@ (Both C{doctest_to_html()} and C{doctest_to_latex()} are defined using C{colorize_doctest()}.) """ +__docformat__ = 'epytext en' import re from epydoc.util import plaintext_to_html, plaintext_to_latex Modified: trunk/epydoc/src/epydoc/markup/pyval_repr.py =================================================================== --- trunk/epydoc/src/epydoc/markup/pyval_repr.py 2007-02-14 05:43:07 UTC (rev 1497) +++ trunk/epydoc/src/epydoc/markup/pyval_repr.py 2007-02-14 05:43:46 UTC (rev 1498) @@ -25,6 +25,7 @@ L{ParsedEpydocDocstring}, which can then be used to generate output in a variety of formats. """ +__docformat__ = 'epytext en' # Implementation note: we use exact tests for classes (list, etc) # rather than using isinstance, because subclasses might override This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |