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

Method __ge__

Lib/fractions.py:1055–1057  ·  view source on GitHub ↗

a >= b

(a, b)

Source from the content-addressed store, hash-verified

1053 return a._richcmp(b, operator.le)
1054
1055 def __ge__(a, b):
1056 """a >= b"""
1057 return a._richcmp(b, operator.ge)
1058
1059 def __bool__(a):
1060 """a != 0"""

Callers

nothing calls this directly

Calls 1

_richcmpMethod · 0.45

Tested by

no test coverage detected