From 05d0f59221212d7a0696bcd4be1b470bc1eaf11a Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Tue, 6 May 2025 19:47:00 +0200 Subject: [PATCH] python: Skip __xml thread-local accessors So we can remove conditional directives for Doxygen. --- python/generator.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/generator.py b/python/generator.py index 23bde481..1306e189 100755 --- a/python/generator.py +++ b/python/generator.py @@ -742,6 +742,8 @@ def skip_function(name): return 1 if name == "xmlSchemaFreeValidCtxt": return 1 + if name[0:5] == "__xml": + return 1 # # Those are skipped because the Const version is used of the bindings