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

Method __gt__

tools/python-3.11.9-amd64/Lib/_pydecimal.py:917–924  ·  view source on GitHub ↗
(self, other, context=None)

Source from the content-addressed store, hash-verified

915 return self._cmp(other) <= 0
916
917 def __gt__(self, other, context=None):
918 self, other = _convert_for_comparison(self, other)
919 if other is NotImplemented:
920 return other
921 ans = self._compare_check_nans(other, context)
922 if ans:
923 return False
924 return self._cmp(other) > 0
925
926 def __ge__(self, other, context=None):
927 self, other = _convert_for_comparison(self, other)

Callers

nothing calls this directly

Calls 3

_compare_check_nansMethod · 0.95
_cmpMethod · 0.95
_convert_for_comparisonFunction · 0.85

Tested by

no test coverage detected