From 8f6b8401e2ffc71219c3aa93860586d4aa4d0368 Mon Sep 17 00:00:00 2001 From: "Erlend E. Aasland" Date: Thu, 18 May 2023 23:28:05 +0200 Subject: [PATCH] gh-104146: Remove unused vars from Argument Clinic Remove 'in_classes' and 'so_far' from DSLParser.directive_module() --- Tools/clinic/clinic.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Tools/clinic/clinic.py b/Tools/clinic/clinic.py index 5fcf2bf485fc8a..ebee9782939499 100755 --- a/Tools/clinic/clinic.py +++ b/Tools/clinic/clinic.py @@ -4230,10 +4230,8 @@ def directive_module(self, name): def directive_class(self, name, typedef, type_object): fields = name.split('.') - in_classes = False parent = self name = fields.pop() - so_far = [] module, cls = self.clinic._module_and_class(fields) parent = cls or module