diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2023-05-04 08:44:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-04 08:44:12 (GMT) |
commit | 33ca322c50baa5152afe388fb3b8b7d63dc5a9b9 (patch) | |
tree | d4c8ce3a399514142892b4ae04dbaa6829b6ad13 /Doc/tools/extensions | |
parent | d0122372f2acb4cc56b89ab8c577ff9039d17d89 (diff) | |
download | cpython-33ca322c50baa5152afe388fb3b8b7d63dc5a9b9.zip cpython-33ca322c50baa5152afe388fb3b8b7d63dc5a9b9.tar.gz cpython-33ca322c50baa5152afe388fb3b8b7d63dc5a9b9.tar.bz2 |
GH-97950: Use new-style index directive ('keyword') (#104153)
* Uncomment keyword removal in pairindextypes
* Use new-style index directive ('keyword') - Reference
Diffstat (limited to 'Doc/tools/extensions')
-rw-r--r-- | Doc/tools/extensions/pyspecific.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/extensions/pyspecific.py b/Doc/tools/extensions/pyspecific.py index 12d3e38..c347a32 100644 --- a/Doc/tools/extensions/pyspecific.py +++ b/Doc/tools/extensions/pyspecific.py @@ -690,7 +690,7 @@ def patch_pairindextypes(app) -> None: # exist, by deleting them when using the gettext builder. pairindextypes.pop('module', None) - # pairindextypes.pop('keyword', None) + pairindextypes.pop('keyword', None) # pairindextypes.pop('operator', None) # pairindextypes.pop('object', None) # pairindextypes.pop('exception', None) |