[Happydoc-checkins] CVS: HappyDoc3/happydoclib appclass.py,1.4,1.5
Brought to you by:
doughellmann,
krlosaqp
|
From: Doug H. <dou...@us...> - 2002-11-17 16:26:52
|
Update of /cvsroot/happydoc/HappyDoc3/happydoclib
In directory usw-pr-cvs1:/tmp/cvs-serv1656/happydoclib
Modified Files:
appclass.py
Log Message:
Use the attribute 'module_info' instead of docs for managing the stuff
that comes back from parseinfo.
Index: appclass.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc3/happydoclib/appclass.py,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** appclass.py 17 Nov 2002 16:21:31 -0000 1.4
--- appclass.py 17 Nov 2002 16:26:49 -0000 1.5
***************
*** 331,336 ****
#
package_parent = packageTreeNode.getParent()
! if package_parent and hasattr(package_parent, 'docs'):
! docs_parent = package_parent.docs
else:
docs_parent = None
--- 331,336 ----
#
package_parent = packageTreeNode.getParent()
! if package_parent and hasattr(package_parent, 'module_info'):
! docs_parent = package_parent.module_info
else:
docs_parent = None
***************
*** 345,349 ****
)
! packageTreeNode.docs = docs
trace.outof()
--- 345,349 ----
)
! packageTreeNode.module_info = docs
trace.outof()
|