[Epydoc-commits] SF.net SVN: epydoc: [1367] trunk/epydoc/src/epydoc/docbuilder.py
Brought to you by:
edloper
|
From: <ed...@us...> - 2006-09-07 15:55:19
|
Revision: 1367
http://svn.sourceforge.net/epydoc/?rev=1367&view=rev
Author: edloper
Date: 2006-09-07 08:55:15 -0700 (Thu, 07 Sep 2006)
Log Message:
-----------
- Docstring fixes
Modified Paths:
--------------
trunk/epydoc/src/epydoc/docbuilder.py
Modified: trunk/epydoc/src/epydoc/docbuilder.py
===================================================================
--- trunk/epydoc/src/epydoc/docbuilder.py 2006-09-07 15:54:59 UTC (rev 1366)
+++ trunk/epydoc/src/epydoc/docbuilder.py 2006-09-07 15:55:15 UTC (rev 1367)
@@ -369,11 +369,13 @@
Construct and return the API documentation for the python
module with the given filename.
- @param parent_doc: The C{ModuleDoc} of the containing package.
- If C{parent_doc} is not provided, then this method will
+ @param parent_docs: The C{ModuleDoc} of the containing package.
+ If C{parent_docs} is not provided, then this method will
check if the given filename is contained in a package; and
if so, it will construct a stub C{ModuleDoc} for the
- containing package(s).
+ containing package(s). C{parent_docs} is a tuple, where
+ the first element is the parent from introspection, and
+ the second element is the parent from parsing.
"""
# Record our progress.
modulename = os.path.splitext(os.path.split(filename)[1])[0]
@@ -589,7 +591,7 @@
@param attrib: The name of the attribute whose values are merged
by C{mergefunc}.
- @param mergefun: The merge function, whose sinature is:
+ @param mergefunc: The merge function, whose sinature is:
>>> def mergefunc(introspect_val, parse_val, precedence, cyclecheck, path):
... return calculate_merged_value(introspect_val, parse_val)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|