[Happydoc-checkins] CVS: HappyDoc3/happydoclib/parseinfo suite.py,1.1,1.2
Brought to you by:
doughellmann,
krlosaqp
From: Doug H. <dou...@us...> - 2002-12-01 22:39:03
|
Update of /cvsroot/happydoc/HappyDoc3/happydoclib/parseinfo In directory sc8-pr-cvs1:/tmp/cvs-serv28795/happydoclib/parseinfo Modified Files: suite.py Log Message: Add a method to retrieve the comment text for a given object. Index: suite.py =================================================================== RCS file: /cvsroot/happydoc/HappyDoc3/happydoclib/parseinfo/suite.py,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** suite.py 17 Nov 2002 15:05:43 -0000 1.1 --- suite.py 1 Dec 2002 22:38:59 -0000 1.2 *************** *** 237,240 **** --- 237,244 ---- ## DocStrings ## + + def getComment(self): + "Return any comments for the object." + return self._comments def getDocString(self): |