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

Method _bind_param

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

Source from the content-addressed store, hash-verified

4786 return True
4787
4788 def _bind_param(self, operator, obj, type_=None, expanding=False):
4789 return BindParameter(
4790 None,
4791 obj,
4792 _compared_to_operator=operator,
4793 type_=type_,
4794 _compared_to_type=self.type,
4795 unique=True,
4796 expanding=expanding,
4797 )
4798
4799 @util.memoized_property
4800 def _is_implicitly_boolean(self):

Callers

nothing calls this directly

Calls 1

BindParameterClass · 0.85

Tested by

no test coverage detected