You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module, keyword, operator, object, exception, statement, builtin
These all create two index entries. For example, module: hashlib creates the entries module; hashlib and hashlib; module. (These are Python-specific and therefore deprecated.)
Currently we are using some of those in the docs, so we have at least 3 options:
keep using them if it's a silent deprecation with no removal plans
reimplement them in pyspecific.py, if we want to keep use them (and if it's possible to reimplement them)
remove them and replace them with the non-deprecated ones
In #97921 (comment) @hugovk noticed that Sphinx has deprecated some of the
.. index::entry types:Currently we are using some of those in the docs, so we have at least 3 options:
(cc @AA-Turner)
Linked PRs