MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / reverse_operate

Method reverse_operate

lib/sqlalchemy/sql/lambdas.py:1350–1352  ·  view source on GitHub ↗
(self, op, other, **kwargs)

Source from the content-addressed store, hash-verified

1348 return op(elem, *other, **kwargs)
1349
1350 def reverse_operate(self, op, other, **kwargs):
1351 elem = object.__getattribute__(self, "_py_wrapper_literal")()
1352 return op(other, elem, **kwargs)
1353
1354 def _extract_bound_parameters(self, starting_point, result_list):
1355 param = object.__getattribute__(self, "_param")

Callers

nothing calls this directly

Calls 2

opFunction · 0.85
__getattribute__Method · 0.45

Tested by

no test coverage detected