Cloning version of _add_lazyload_options.
(self, options, effective_path, cache_path=None)
| 171 | return self._cache_key + (session._query_cls,) |
| 172 | |
| 173 | def _with_lazyload_options(self, options, effective_path, cache_path=None): |
| 174 | """Cloning version of _add_lazyload_options.""" |
| 175 | q = self._clone() |
| 176 | q._add_lazyload_options(options, effective_path, cache_path=cache_path) |
| 177 | return q |
| 178 | |
| 179 | def _add_lazyload_options(self, options, effective_path, cache_path=None): |
| 180 | """Used by per-state lazy loaders to add options to the |
nothing calls this directly
no test coverage detected