MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _implicit_coercions

Method _implicit_coercions

lib/sqlalchemy/sql/coercions.py:1194–1206  ·  view source on GitHub ↗
(
        self,
        element: Any,
        resolved: Any,
        argname: Optional[str] = None,
        **kw: Any,
    )

Source from the content-addressed store, hash-verified

1192 return resolved
1193
1194 def _implicit_coercions(
1195 self,
1196 element: Any,
1197 resolved: Any,
1198 argname: Optional[str] = None,
1199 **kw: Any,
1200 ) -> Any:
1201 if resolved._is_lambda_element:
1202 return resolved
1203 else:
1204 return super()._implicit_coercions(
1205 element, resolved, argname=argname, **kw
1206 )
1207
1208
1209class SelectStatementImpl(_NoTextCoercion, RoleImpl):

Callers

nothing calls this directly

Calls 1

_implicit_coercionsMethod · 0.45

Tested by

no test coverage detected