From 6e675dfc30c438b899b4fb3c9f119ebdc1d6deb8 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Sat, 16 Dec 2023 23:35:40 +0000 Subject: [PATCH] Configure: remove unused error_handlers ConfigurationContext's error_handlers isn't used anywhere in the whole project, and it's unknown how it should've been implemented --- waflib/Configure.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/waflib/Configure.py b/waflib/Configure.py index 58971134..81d62333 100644 --- a/waflib/Configure.py +++ b/waflib/Configure.py @@ -31,11 +31,6 @@ class ConfigurationContext(Context.Context): cmd = 'configure' - error_handlers = [] - """ - Additional functions to handle configuration errors - """ - def __init__(self, **kw): super(ConfigurationContext, self).__init__(**kw) self.environ = dict(os.environ)