]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: use Node.findall to avoid a deprecation warning (#99403)
authorAdam Turner <9087854+AA-Turner@users.noreply.github.com>
Sat, 8 Apr 2023 07:56:20 +0000 (08:56 +0100)
committerGitHub <noreply@github.com>
Sat, 8 Apr 2023 07:56:20 +0000 (10:56 +0300)
Doc/tools/extensions/c_annotations.py

index 5af56433f41573ae5fd5be1bea0106a0047ccbc2..3551bfa4c0f13337a252ac737de1745ebc6c253a 100644 (file)
@@ -20,6 +20,7 @@
 """
 
 from os import path
+import docutils
 from docutils import nodes
 from docutils.parsers.rst import directives
 from docutils.parsers.rst import Directive
@@ -41,6 +42,16 @@ REST_ROLE_MAP = {
 }
 
 
+# Monkeypatch nodes.Node.findall for forwards compatability
+# This patch can be dropped when the minimum Sphinx version is 4.4.0
+# or the minimum Docutils version is 0.18.1.
+if docutils.__version_info__ < (0, 18, 1):
+    def findall(self, *args, **kwargs):
+        return iter(self.traverse(*args, **kwargs))
+
+    nodes.Node.findall = findall
+
+
 class RCEntry:
     def __init__(self, name):
         self.name = name
@@ -87,7 +98,7 @@ class Annotations:
                 self.stable_abi_data[name] = record
 
     def add_annotations(self, app, doctree):
-        for node in doctree.traverse(addnodes.desc_content):
+        for node in doctree.findall(addnodes.desc_content):
             par = node.parent
             if par['domain'] != 'c':
                 continue