[Happydoc-checkins] CVS: HappyDoc3/happydoclib packagetree.py,1.8,1.9
Brought to you by:
doughellmann,
krlosaqp
|
From: Doug H. <dou...@us...> - 2003-03-16 23:42:32
|
Update of /cvsroot/happydoc/HappyDoc3/happydoclib
In directory sc8-pr-cvs1:/tmp/cvs-serv14921/happydoclib
Modified Files:
packagetree.py
Log Message:
Add getImportData() as part of the default API.
Index: packagetree.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc3/happydoclib/packagetree.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** packagetree.py 16 Mar 2003 20:16:27 -0000 1.8
--- packagetree.py 16 Mar 2003 23:42:27 -0000 1.9
***************
*** 198,202 ****
def getOneLiner(self):
return self.getSummaryAndFormat()[0]
!
#
--- 198,206 ----
def getOneLiner(self):
return self.getSummaryAndFormat()[0]
!
! def getImportData(self):
! "Returns a list of the symbols which are imported."
! return []
!
#
|