diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2023-05-04 09:03:11 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-04 09:03:11 (GMT) |
commit | b0ce2db1184124575d5934d205344a9cf5debb79 (patch) | |
tree | d849d597b8f8e31791cd8053b861141147d7d59d /Doc/tools/extensions | |
parent | 33ca322c50baa5152afe388fb3b8b7d63dc5a9b9 (diff) | |
download | cpython-b0ce2db1184124575d5934d205344a9cf5debb79.zip cpython-b0ce2db1184124575d5934d205344a9cf5debb79.tar.gz cpython-b0ce2db1184124575d5934d205344a9cf5debb79.tar.bz2 |
GH-97950: Use new-style index directive ('operator') (#104156)
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 c347a32..8ca3ef0 100644 --- a/Doc/tools/extensions/pyspecific.py +++ b/Doc/tools/extensions/pyspecific.py @@ -691,7 +691,7 @@ def patch_pairindextypes(app) -> None: pairindextypes.pop('module', None) pairindextypes.pop('keyword', None) - # pairindextypes.pop('operator', None) + pairindextypes.pop('operator', None) # pairindextypes.pop('object', None) # pairindextypes.pop('exception', None) # pairindextypes.pop('statement', None) |