summaryrefslogtreecommitdiffstats
path: root/Doc/tools/extensions/pyspecific.py
diff options
context:
space:
mode:
authorAdam Turner <9087854+AA-Turner@users.noreply.github.com>2023-05-06 03:54:08 (GMT)
committerGitHub <noreply@github.com>2023-05-06 03:54:08 (GMT)
commitf5088006ca8e9654fbc3de119462f0ab764e408b (patch)
tree607630e41342515bec641e56639dd65773b3bacf /Doc/tools/extensions/pyspecific.py
parent4cd95dce0b8d7bb8a16468ec8b5b3429555417f1 (diff)
downloadcpython-f5088006ca8e9654fbc3de119462f0ab764e408b.zip
cpython-f5088006ca8e9654fbc3de119462f0ab764e408b.tar.gz
cpython-f5088006ca8e9654fbc3de119462f0ab764e408b.tar.bz2
GH-97950: Use new-style index directive ('builtin') (#104164)
* Uncomment builtin removal in pairindextypes * Use new-style index directive ('builtin') - C API * Use new-style index directive ('builtin') - Extending * Use new-style index directive ('builtin') - Library * Use new-style index directive ('builtin') - Reference * Use new-style index directive ('builtin') - Tutorial
Diffstat (limited to 'Doc/tools/extensions/pyspecific.py')
-rw-r--r--Doc/tools/extensions/pyspecific.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/extensions/pyspecific.py b/Doc/tools/extensions/pyspecific.py
index 8fc44ca..4fe54e3 100644
--- a/Doc/tools/extensions/pyspecific.py
+++ b/Doc/tools/extensions/pyspecific.py
@@ -695,7 +695,7 @@ def patch_pairindextypes(app) -> None:
pairindextypes.pop('object', None)
pairindextypes.pop('exception', None)
pairindextypes.pop('statement', None)
- # pairindextypes.pop('builtin', None)
+ pairindextypes.pop('builtin', None)
def setup(app):