[Epydoc-commits] SF.net SVN: epydoc: [1493] trunk/epydoc/src/epydoc/docbuilder.py
Brought to you by:
edloper
From: <ed...@us...> - 2007-02-14 03:47:08
|
Revision: 1493 http://svn.sourceforge.net/epydoc/?rev=1493&view=rev Author: edloper Date: 2007-02-13 19:47:07 -0800 (Tue, 13 Feb 2007) Log Message: ----------- - Changed MERGE_PRECEDENCE['is_imported'] to introspect -- fixes SF bug [#1653486]. Modified Paths: -------------- trunk/epydoc/src/epydoc/docbuilder.py Modified: trunk/epydoc/src/epydoc/docbuilder.py =================================================================== --- trunk/epydoc/src/epydoc/docbuilder.py 2007-02-14 02:19:00 UTC (rev 1492) +++ trunk/epydoc/src/epydoc/docbuilder.py 2007-02-14 03:47:07 UTC (rev 1493) @@ -636,9 +636,11 @@ # Why? 'canonical_name': 'introspect', - # The parser can tell if a variable is imported or not; the - # introspector must guess. - 'is_imported': 'parse', + # Only fall-back on the parser for is_imported if the introspecter + # isn't sure. Otherwise, we can end up thinking that vars + # containing modules are not imported, which can cause external + # modules to show up in the docs (sf bug #1653486) + 'is_imported': 'introspect', # The parser can tell if an assignment creates an alias or not. 'is_alias': 'parse', This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |