Skip to content

Commit 3329cd5

Browse files
committed
bpo-37504: Fix documentation build with texinfo builder
In the table model used by docutils, the `cols` attribute of `tgroup` nodes is mandatory, see [1]. It is used in texinfo builder in [2]. [1]: https://www.oasis-open.org/specs/tm9901.htm#AEN348 [2]: https://github.com/sphinx-doc/sphinx/blob/v2.1.2/sphinx/writers/texinfo.py#L1129
1 parent 40dad95 commit 3329cd5

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Doc/tools/extensions/pyspecific.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -536,6 +536,7 @@ def process_audit_events(app, doctree, fromdocname):
536536
nodes.colspec(colwidth=30),
537537
nodes.colspec(colwidth=55),
538538
nodes.colspec(colwidth=15),
539+
cols=3,
539540
)
540541
head = nodes.thead()
541542
body = nodes.tbody()

0 commit comments

Comments
 (0)