# Synthetic dormant capability fixture. Nothing executes at import time. def dormant_fixture(): module_name = "sub" + "process" function_name = "r" + "un" module = __import__(module_name) fn = getattr(module, function_name) return fn(["python", "--version"], check=False) MARKER = 'LAYERFAULT_FIXTURE:evasion-python-string-concat-capability'