示例#1
0
 def __rpow__(self: MagicT, other: Any) -> MagicT:
     return self._extend(
         RCombinationOperation(left=other, combinator=operator.pow))
示例#2
0
 def __rfloordiv__(self: MagicT, other: Any) -> MagicT:
     return self._extend(
         RCombinationOperation(left=other, combinator=operator.floordiv))