We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1d2b57d + 038fc40 commit d07e1c8Copy full SHA for d07e1c8
CHANGES.rst
@@ -20,5 +20,8 @@ Features added
20
Bugs fixed
21
----------
22
23
+* #14189: autodoc: Fix duplicate ``:no-index-entry:`` for modules.
24
+ Patch by Adam Turner
25
+
26
Testing
27
-------
sphinx/ext/autodoc/_renderer.py
@@ -61,8 +61,6 @@ def _directive_header_lines(
61
yield f' :platform: {options.platform}'
62
if options.deprecated:
63
yield ' :deprecated:'
64
- if options.no_index_entry:
65
- yield ' :no-index-entry:'
66
67
if props.obj_type in {'class', 'exception'}:
68
assert isinstance(props, _ClassDefProperties)
0 commit comments