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

Method __rmod__

lib/sqlalchemy/sql/operators.py:1964–1970  ·  view source on GitHub ↗

Implement the ``%`` operator in reverse. See :meth:`.ColumnOperators.__mod__`.

(self, other: Any)

Source from the content-addressed store, hash-verified

1962 return self.reverse_operate(mul, other)
1963
1964 def __rmod__(self, other: Any) -> ColumnOperators:
1965 """Implement the ``%`` operator in reverse.
1966
1967 See :meth:`.ColumnOperators.__mod__`.
1968
1969 """
1970 return self.reverse_operate(mod, other)
1971
1972 def between(
1973 self, cleft: Any, cright: Any, symmetric: bool = False

Callers

nothing calls this directly

Calls 1

reverse_operateMethod · 0.95

Tested by

no test coverage detected