MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _bind_param

Method _bind_param

lib/sqlalchemy/sql/elements.py:5215–5224  ·  view source on GitHub ↗
(self, operator, obj, type_=None, expanding=False)

Source from the content-addressed store, hash-verified

5213 return True
5214
5215 def _bind_param(self, operator, obj, type_=None, expanding=False):
5216 return BindParameter(
5217 None,
5218 obj,
5219 _compared_to_operator=operator,
5220 type_=type_,
5221 _compared_to_type=self.type,
5222 unique=True,
5223 expanding=expanding,
5224 )
5225
5226 @util.memoized_property
5227 def _is_implicitly_boolean(self):

Callers

nothing calls this directly

Calls 1

BindParameterClass · 0.85

Tested by

no test coverage detected