(key: _AttrType, *addl_attrs: _AttrType)
| 2523 | |
| 2524 | @loader_unbound_fn |
| 2525 | def undefer(key: _AttrType, *addl_attrs: _AttrType) -> _AbstractLoad: |
| 2526 | if addl_attrs: |
| 2527 | util.warn_deprecated( |
| 2528 | "The *addl_attrs on orm.undefer is deprecated. Please use " |
| 2529 | "method chaining in conjunction with defaultload() to " |
| 2530 | "indicate a path.", |
| 2531 | version="1.3", |
| 2532 | ) |
| 2533 | return _generate_from_keys(Load.undefer, (key,) + addl_attrs, False, {}) |
| 2534 | |
| 2535 | |
| 2536 | @loader_unbound_fn |