File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -104,6 +104,9 @@ Features added
104104* #9169: Add the :confval: `intersphinx_resolve_self ` option
105105 to resolve an intersphinx reference to the current project.
106106 Patch by Jakob Lykke Andersen and Adam Turner.
107+ * #13326: Remove hardcoding from handling :class: `~sphinx.addnodes.productionlist `
108+ nodes in all writers, to improve flexibility.
109+ Patch by Adam Turner.
107110
108111Bugs fixed
109112----------
Original file line number Diff line number Diff line change @@ -620,7 +620,7 @@ def run(self) -> list[Node]:
620620 return [node ]
621621
622622 @staticmethod
623- def production_group (lines : Sequence [str ], options : dict [str , Any ]) -> str : # NoQA: ARG004
623+ def production_group (lines : list [str ], options : dict [str , Any ]) -> str : # NoQA: ARG004
624624 # get production_group
625625 if not lines or ':' in lines [0 ]:
626626 return ''
You can’t perform that action at this time.
0 commit comments