MCPcopy Create free account
hub / github.com/numpy/numpy / __rmod__

Method __rmod__

numpy/polynomial/_polybase.py:631–635  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

629 return res[0]
630
631 def __rmod__(self, other):
632 res = self.__rdivmod__(other)
633 if res is NotImplemented:
634 return res
635 return res[1]
636
637 def __rdivmod__(self, other):
638 try:

Callers

nothing calls this directly

Calls 1

__rdivmod__Method · 0.95

Tested by

no test coverage detected