MCPcopy Index your code
hub / github.com/python/cpython / __gt__

Method __gt__

Lib/fractions.py:1047–1049  ·  view source on GitHub ↗

a > b

(a, b)

Source from the content-addressed store, hash-verified

1045 return a._richcmp(b, operator.lt)
1046
1047 def __gt__(a, b):
1048 """a > b"""
1049 return a._richcmp(b, operator.gt)
1050
1051 def __le__(a, b):
1052 """a <= b"""

Callers

nothing calls this directly

Calls 1

_richcmpMethod · 0.45

Tested by

no test coverage detected