Revert keyword-only arguments change to `token_xrefs()`

This commit is contained in:
Adam Turner 2025-01-29 15:49:55 +00:00
parent 5667050dd2
commit 4936b27996

View File

@ -553,7 +553,7 @@ class Glossary(SphinxDirective):
return [*messages, node]
def token_xrefs(text: str, *, production_group: str = '') -> list[Node]:
def token_xrefs(text: str, production_group: str = '') -> list[Node]:
if len(production_group) != 0:
production_group += ':'
retnodes: list[Node] = []