We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e1586e commit 7799d7aCopy full SHA for 7799d7a
1 file changed
mathics/doc/doc.py
@@ -7,6 +7,7 @@
7
8
See also `../test.py` for a command-line interface that calls this.
9
10
+FIXME: Note this code is duplicated in Django
11
This code should be replaced by sphinx and autodoc.
12
"""
13
@@ -819,7 +820,7 @@ def __init__(self):
819
820
if module.__file__.endswith("__init__.py"):
821
section_names = get_submodule_names(module)
822
else:
- section_names = builtins
823
+ section_names = [builtin for builtin in builtins if not builtin.__class__.__name__.endswith("Box")]
824
825
for instance in section_names:
826
installed = True
0 commit comments