"""Backwards-compatibility shim for top-level `result_table` module. Moved into `SYS.result_table` — keep the old import path working for tests and third-party code. """ from importlib import import_module import sys _real = import_module("SYS.result_table") sys.modules[__name__] = _real