[Epydoc-commits] SF.net SVN: epydoc: [1553] trunk/epydoc/src/epydoc/apidoc.py
Brought to you by:
edloper
|
From: <ed...@us...> - 2007-02-27 00:07:58
|
Revision: 1553
http://svn.sourceforge.net/epydoc/?rev=1553&view=rev
Author: edloper
Date: 2007-02-26 16:07:56 -0800 (Mon, 26 Feb 2007)
Log Message:
-----------
- VariableDoc's containing routines with overrides != None should
return true for is_detailed()
Modified Paths:
--------------
trunk/epydoc/src/epydoc/apidoc.py
Modified: trunk/epydoc/src/epydoc/apidoc.py
===================================================================
--- trunk/epydoc/src/epydoc/apidoc.py 2007-02-26 23:12:41 UTC (rev 1552)
+++ trunk/epydoc/src/epydoc/apidoc.py 2007-02-27 00:07:56 UTC (rev 1553)
@@ -681,6 +681,10 @@
if pval or self.value in (None, UNKNOWN):
return pval
+ if (self.overrides not in (None, UNKNOWN) and
+ isinstance(self.value, RoutineDoc)):
+ return True
+
if isinstance(self.value, GenericValueDoc):
# [XX] This is a little hackish -- we assume that the
# summary lines will have SUMMARY_REPR_LINELEN chars,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|