File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -104,7 +104,6 @@ def no_doc_run(self):
104
104
r"libsemigroups::Sims2" : r"Sims2" ,
105
105
r"libsemigroups::RepOrc" : r"RepOrc" ,
106
106
r"libsemigroups::MinimalRepOrc" : r"MinimalRepOrc" ,
107
- r"libsemigroups::BooleanOne, int>" : r"Matrix" ,
108
107
}
109
108
110
109
# This dictionary should be of the form class_name -> (pattern, repl), where
@@ -141,7 +140,7 @@ def no_doc_run(self):
141
140
# FIXME can't disable signatures in c++ for the next one because it is
142
141
# overloaded, and then there are no signatures at all (and the overloads
143
142
# are seemingly documented as a single function because of this)
144
- # r"knuth_bendix_non_trivial_classes.*$": "",
143
+ r"knuth_bendix_non_trivial_classes.*$" : "" ,
145
144
r"pbr_one\(\*args, \*\*kwargs\)" : "" ,
146
145
r"word_graph_dot\(.*\)(\s*->\s*(\w+::)*\w*)?" : "" ,
147
146
}
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ def __init__(
189
189
* **generators** (*List[Element]*)-- at least one generator for the action.
190
190
* **seeds** (*List[Point]*) -- at least one seed point for the action.
191
191
* **func** (*Callable[[Point, Element], Point]*) -- the function defining the action.
192
- * **side** (:any :`side <side>`)-- the side of the action.
192
+ * **side** (:py:class :`side <side>`)-- the side of the action.
193
193
194
194
:raises TypeError:
195
195
if *generators* or *seeds* is not a list.
Original file line number Diff line number Diff line change @@ -73,8 +73,12 @@ included for uniformity of interface between with
73
73
def_construct_kind_presentation (
74
74
thing, " Kambites" , doc{.detail = extra_detail});
75
75
76
+ // FIXME the following doesn't get included in the doc for some reason.
77
+ // This is probably a problem in libsemigroups_pybind11_extensions.py,
78
+ // since introducing an error in the string below goes yield a
79
+ // warning/error in sphinx.
76
80
auto extra_raises = R"pbdoc(
77
- :raises LibsemigroupsError: if *knd* is not :any:` congruence_kind.twosided`.
81
+ :raises LibsemigroupsError: if *knd* is not `` congruence_kind.twosided` `.
78
82
)pbdoc" sv;
79
83
80
84
def_init_kind_presentation (
You can’t perform that action at this time.
0 commit comments