MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / __rtruediv__

Method __rtruediv__

tools/python-3.11.9-amd64/Lib/_pydecimal.py:1426–1431  ·  view source on GitHub ↗

Swaps self/other and returns __truediv__.

(self, other, context=None)

Source from the content-addressed store, hash-verified

1424 return ans, ans
1425
1426 def __rtruediv__(self, other, context=None):
1427 """Swaps self/other and returns __truediv__."""
1428 other = _convert_other(other)
1429 if other is NotImplemented:
1430 return other
1431 return other.__truediv__(self, context=context)
1432
1433 def __divmod__(self, other, context=None):
1434 """

Callers

nothing calls this directly

Calls 2

_convert_otherFunction · 0.85
__truediv__Method · 0.45

Tested by

no test coverage detected