Browse Source

Alphabetically sort attributetable output

pull/5062/head
Rapptz 5 years ago
parent
commit
6eba27d98e
  1. 2
      docs/extensions/attributetable.py

2
docs/extensions/attributetable.py

@ -131,7 +131,7 @@ def process_attributetable(app, doctree, fromdocname):
for label, subitems in groups.items():
if not subitems:
continue
table.append(class_results_to_node(label, subitems))
table.append(class_results_to_node(label, sorted(subitems)))
table['python-class'] = fullname

Loading…
Cancel
Save