MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / immediateload

Function immediateload

lib/sqlalchemy/orm/strategy_options.py:2480–2485  ·  view source on GitHub ↗
(
    *keys: _AttrType, recursion_depth: Optional[int] = None
)

Source from the content-addressed store, hash-verified

2478
2479@loader_unbound_fn
2480def immediateload(
2481 *keys: _AttrType, recursion_depth: Optional[int] = None
2482) -> _AbstractLoad:
2483 return _generate_from_keys(
2484 Load.immediateload, keys, False, {"recursion_depth": recursion_depth}
2485 )
2486
2487
2488@loader_unbound_fn

Callers 4

test_basic_optionMethod · 0.90
test_basic_option_m2oMethod · 0.90
test_all_loadMethod · 0.90
mainFunction · 0.90

Calls 1

_generate_from_keysFunction · 0.85

Tested by 3

test_basic_optionMethod · 0.72
test_basic_option_m2oMethod · 0.72
test_all_loadMethod · 0.72