[Happydoc-checkins] CVS: HappyDoc3/happydoclib packagetree.py,1.9,1.10
                
                Brought to you by:
                
                    doughellmann,
                    
                
                    krlosaqp
                    
                
            
            
        
        
        
    | 
      
      
      From: Doug H. <dou...@us...> - 2003-03-18 17:21:56
      
     | 
| Update of /cvsroot/happydoc/HappyDoc3/happydoclib
In directory sc8-pr-cvs1:/tmp/cvs-serv12384/happydoclib
Modified Files:
	packagetree.py 
Log Message:
Add getSummaryAndFormat() to CodeObjectTree.
Index: packagetree.py
===================================================================
RCS file: /cvsroot/happydoc/HappyDoc3/happydoclib/packagetree.py,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** packagetree.py	16 Mar 2003 23:42:27 -0000	1.9
--- packagetree.py	18 Mar 2003 17:21:52 -0000	1.10
***************
*** 484,487 ****
--- 484,494 ----
          """
          return self.code_info.getDocStringAndFormat()
+ 
+     def getSummaryAndFormat(self):
+         """Returns a tuple containing a one line summary of the
+         documentation for the node and the format of that
+         string as understood by the docstring converter plugins.
+         """
+         return self.code_info.getSummaryAndFormat()
      
  
 |