From 3038a668661b397612c0e5dd59b29f93a5193208 Mon Sep 17 00:00:00 2001 From: Andre Merzky Date: Tue, 20 Aug 2024 14:48:30 +0200 Subject: [PATCH 1/2] rename --- src/radical/utils/env.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/radical/utils/env.py b/src/radical/utils/env.py index e132b50a..5ebe6f0b 100644 --- a/src/radical/utils/env.py +++ b/src/radical/utils/env.py @@ -19,7 +19,7 @@ # we know that some env vars are not worth preserving. We explicitly exclude # those which are common to have complex syntax and need serious caution on # shell escaping: -BLACKLIST = ['PS1', 'LS_COLORS', '_', 'SHLVL', 'PROMPT_COMMAND'] +IGNORE_LIST = ['PS1', 'LS_COLORS', '_', 'SHLVL', 'PROMPT_COMMAND'] # Identical task `pre_exec_cached` settings will result in the same environment # settings, so we cache those environments here. We rely on a hash to ensure @@ -72,13 +72,13 @@ def env_write(script_path, env, unset=None, blacklist=None, pre_exec=None): data += 'unset %s\n' % k data += '\n' - if BLACKLIST: + if IGNORE_LIST: data += '# blacklist\n' - for k in sorted(BLACKLIST): + for k in sorted(IGNORE_LIST): data += 'unset %s\n' % k data += '\n' - env = {k: v for k, v in env.items() if k not in BLACKLIST} + env = {k: v for k, v in env.items() if k not in IGNORE_LIST} if blacklist: data += '# blacklist\n' @@ -164,7 +164,7 @@ def env_read_lines(lines: List[str]) -> Dict[str, str]: if re_snake_case.match(this_key): # valid key - store previous key/val if we have any, and # initialize `key` and `val` - if key and key not in BLACKLIST: + if key and key not in IGNORE_LIST: env[key] = val key = this_key @@ -173,7 +173,7 @@ def env_read_lines(lines: List[str]) -> Dict[str, str]: elif re_bash_function.match(this_key): # function definitions # initialize `key` and `val` - if key and key not in BLACKLIST: + if key and key not in IGNORE_LIST: env[key] = val key = this_key @@ -185,7 +185,7 @@ def env_read_lines(lines: List[str]) -> Dict[str, str]: val += line # store last key/val if we have any - if key and key not in BLACKLIST: + if key and key not in IGNORE_LIST: env[key] = val return env @@ -444,7 +444,7 @@ def env_diff(env_1 : Dict[str,str], those elements which appear in only either one or the other env, and which changed from one env to another. - It will ignore any keys in the `BLACKLIST` and will also ignore + It will ignore any keys in the `IGNORE_LIST` and will also ignore `BASH_FUNC_*` keys which point to bash function definitions. ''' @@ -456,7 +456,7 @@ def env_diff(env_1 : Dict[str,str], keys_2 = sorted(env_2.keys()) for k in keys_1: - if k in BLACKLIST: + if k in IGNORE_LIST: continue if k.startswith('BASH_FUNC_'): continue @@ -465,7 +465,7 @@ def env_diff(env_1 : Dict[str,str], elif v != env_2[k] : changed[k] = [v, env_2[k]] for k in keys_2: - if k in BLACKLIST: + if k in IGNORE_LIST: continue if k.startswith('BASH_FUNC_'): continue From 15cd382886fe7c05f94e69a7516dd22ea00355c9 Mon Sep 17 00:00:00 2001 From: Andre Merzky Date: Tue, 20 Aug 2024 15:24:36 +0200 Subject: [PATCH 2/2] fix test --- tests/unittests/test_env.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unittests/test_env.py b/tests/unittests/test_env.py index fce419d0..45de5ed2 100755 --- a/tests/unittests/test_env.py +++ b/tests/unittests/test_env.py @@ -80,7 +80,7 @@ def test_env_read(): assert os.environ[k] == v, [k, os.environ[k], v] for k,v in os.environ.items(): - if k not in ru.env.BLACKLIST: + if k not in ru.env.IGNORE_LIST: if k.startswith('BASH_FUNC_'): # bash funcs are not exported to other shells continue