MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / _implicit_coercions

Method _implicit_coercions

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

Source from the content-addressed store, hash-verified

1185 return resolved
1186
1187 def _implicit_coercions(
1188 self,
1189 element: Any,
1190 resolved: Any,
1191 argname: Optional[str] = None,
1192 **kw: Any,
1193 ) -> Any:
1194 if resolved._is_lambda_element:
1195 return resolved
1196 else:
1197 return super()._implicit_coercions(
1198 element, resolved, argname=argname, **kw
1199 )
1200
1201
1202class SelectStatementImpl(_NoTextCoercion, RoleImpl):

Callers

nothing calls this directly

Calls 1

_implicit_coercionsMethod · 0.45

Tested by

no test coverage detected