From f183790c0c5addbd8a40b36bf79e2911f0d358fb Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Wed, 10 Mar 2021 09:41:53 -0800 Subject: [PATCH] bindings: Remove obsolete references to gccxmlparser --- bindings/python/ns3modulescan.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings/python/ns3modulescan.py b/bindings/python/ns3modulescan.py index f69f287fa..7274cbfef 100644 --- a/bindings/python/ns3modulescan.py +++ b/bindings/python/ns3modulescan.py @@ -4,7 +4,7 @@ import sys import os.path import pybindgen.settings -from pybindgen.gccxmlparser import ModuleParser, PygenClassifier, PygenSection, WrapperWarning +from pybindgen.castxmlparser import ModuleParser, PygenClassifier, PygenSection, WrapperWarning from pybindgen.typehandlers.codesink import FileCodeSink from pygccxml.declarations import templates from pygccxml.declarations.class_declaration import class_t @@ -18,7 +18,7 @@ from pygccxml.declarations.calldef import calldef_t import ns3modulegen_core_customizations -## silence gccxmlparser errors; we only want error handling in the +## silence castxmlparser errors; we only want error handling in the ## generated python script, not while scanning. class ErrorHandler(pybindgen.settings.ErrorHandler): def handle_error(self, dummy_wrapper, dummy_exception, dummy_traceback_):