Skip to content

Commit 4c2d679

Browse files
committed
Fix #2565: The descriptions of objects generated by sphinx.ext.autosummary overflow lines at LaTeX writer
1 parent 881455c commit 4c2d679

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ Bugs fixed
6262
* #2518: `intersphinx_mapping` disallows non alphanumeric keys
6363
* #2558: unpack error on devhelp builder
6464
* #2561: Info builder crashes when a footnote contains a link
65+
* #2565: The descriptions of objects generated by ``sphinx.ext.autosummary`` overflow lines at LaTeX writer
6566

6667

6768
Release 1.4.1 (released Apr 12, 2016)

sphinx/ext/autosummary/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def get_table(self, items):
337337
*items* is a list produced by :meth:`get_items`.
338338
"""
339339
table_spec = addnodes.tabular_col_spec()
340-
table_spec['spec'] = 'll'
340+
table_spec['spec'] = 'p{0.5\linewidth}p{0.5\linewidth}'
341341

342342
table = autosummary_table('')
343343
real_table = nodes.table('', classes=['longtable'])

0 commit comments

Comments
 (0)