#6586: [with spkg, needs review] update Sphinx to version 0.6.2
-------------------------+--------------------------------------------------
Reporter: jhpalmieri | Owner: mabshoff
Type: enhancement | Status: new
Priority: major | Milestone: sage-4.1.1
Component: packages | Keywords:
Reviewer: | Author:
Merged: |
-------------------------+--------------------------------------------------
Comment(by mpatel):
Minor progress: It seems that a custom
[http://sphinx.pocoo.org/ext/autodoc.html?highlight=inherited%20members
#skipping-members autodoc-skip-member] method now ''overrides'' Sphinx's
default behavior, which is to skip private methods (`__init__`, etc.). To
keep these out of the reference manual, we might use, e.g.,
{{{
def skip_NestedClass(app, what, name, obj, skip, options):
"""docstring"""
skip_nested = str(obj).find("sage.misc.misc") != -1 and
name.find("MainClass.NestedClass") != -1
return skip or skip_nested
}}}
in `conf.py`. Unfortunately, this does not significantly reduce the build
time or memory usage.
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/6586#comment:10>
Sage <http://sagemath.org/>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---