Skip to content

Commit c5faf8f

Browse files
authored
Merge branch 'master' into 2d_print
2 parents a591742 + 6495274 commit c5faf8f

File tree

2 files changed

+44
-3
lines changed

2 files changed

+44
-3
lines changed

mathics/builtin/numbers/linalg.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,11 @@ class Eigenvalues(Builtin):
106106
<dl>
107107
<dt>'Eigenvalues[$m$]'
108108
<dd>computes the eigenvalues of the matrix $m$.
109-
By default Sympy's routine is used. Sometimes this is slow and
110-
less good than the corresponding mpmath routine. Use option Method->"mpmath" if you want
111-
to use mpmath's routine instead.
109+
110+
By default, Sympy's routine is used. Sometimes this is slow and \
111+
less good than the corresponding mpmath routine.
112+
113+
Use option Method->"mpmath" if you want to use mpmath's routine instead.
112114
</dl>
113115
114116
Numeric eigenvalues are sorted in order of decreasing absolute value:

mathics/doc/common_doc.py

+39
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,42 @@
5858
MathicsMainDocumentation,
5959
sorted_chapters,
6060
)
61+
62+
__all__ = [
63+
"ALLOWED_TAGS",
64+
"ALLOWED_TAGS_RE",
65+
"CONSOLE_RE",
66+
"DL_ITEM_RE",
67+
"DL_RE",
68+
"DocChapter",
69+
"DocGuideSection",
70+
"DocPart",
71+
"DocSection",
72+
"DocSubsection",
73+
"DocTest",
74+
"DocTests",
75+
"DocText",
76+
"Documentation",
77+
"DocumentationEntry",
78+
"HYPERTEXT_RE",
79+
"IMG_PNG_RE",
80+
"IMG_RE",
81+
"LATEX_RE",
82+
"LIST_ITEM_RE",
83+
"LIST_RE",
84+
"MATHICS3_MODULES_TITLE",
85+
"MATHICS_RE",
86+
"MathicsMainDocumentation",
87+
"PYTHON_RE",
88+
"QUOTATIONS_RE",
89+
"REF_RE",
90+
"SPECIAL_COMMANDS",
91+
"SUBSECTION_END_RE",
92+
"SUBSECTION_RE",
93+
"Tests",
94+
"get_results_by_test",
95+
"parse_docstring_to_DocumentationEntry_items",
96+
"post_sub",
97+
"pre_sub",
98+
"sorted_chapters",
99+
]

0 commit comments

Comments
 (0)