mirror of
https://github.com/pewdiepie-archdaemon/odysseus.git
synced 2026-07-08 11:56:59 +00:00
41420c59fc
Slice 2c of the route-domain reorganization (#4082/#4071, per specs/architecture-runtime-inventory.md §6.3). Moves memory_routes.py into routes/memory/, leaving a backward-compat sys.modules shim at the old path. Pure file reorganization, no behavior change. The shim uses sys.modules replacement (same pattern as the merged gallery #4903 and research #4975 slices) so that `import routes.memory_routes`, `from routes.memory_routes import X`, `importlib.import_module(...)`, and the `import ... as mr` + `monkeypatch.setattr(mr, ...)` pattern used by test_memory_routes_session_owner.py / test_memory_owner_isolation.py all operate on the same module object the application uses. The canonical module does NOT depend on the shim — routes/memory/ memory_routes.py imports only from services/, core/, src/, and stdlib (zero internal routes/ coupling). Four source-introspection test sites repointed to the new canonical path: - test_direct_upload_limits.py - test_upload_limits_centralized.py (two dict keys) - test_vision_owner_scope.py Adds tests/test_memory_routes_shim.py to pin the sys.modules shim contract (legacy and canonical paths resolve to the same module object; monkeypatch via legacy alias reaches the canonical module). Verified: compileall clean; full suite 4219 passed, 3 skipped.
19 lines
803 B
Python
19 lines
803 B
Python
"""Backward-compat shim — canonical location is routes/memory/memory_routes.py.
|
|
|
|
This module is replaced in ``sys.modules`` by the canonical module object so
|
|
that ``import routes.memory_routes``, ``from routes.memory_routes import X``,
|
|
``importlib.import_module("routes.memory_routes")``, and
|
|
``monkeypatch.setattr(routes.memory_routes, "ATTR", ...)`` (used by
|
|
test_memory_routes_session_owner.py and test_memory_owner_isolation.py via
|
|
``import ... as mr`` + ``setattr(mr, ...)``) all operate on the *same* object
|
|
the application actually uses. Keeps existing import paths working after
|
|
slice 2c (#4082/#4071). Source-introspection tests read the canonical file
|
|
by path.
|
|
"""
|
|
|
|
import sys as _sys
|
|
|
|
from routes.memory import memory_routes as _canonical # noqa: F401
|
|
|
|
_sys.modules[__name__] = _canonical
|