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

Method __floordiv__

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

Source from the content-addressed store, hash-verified

564 return self.__floordiv__(other)
565
566 def __floordiv__(self, other):
567 res = self.__divmod__(other)
568 if res is NotImplemented:
569 return res
570 return res[0]
571
572 def __mod__(self, other):
573 res = self.__divmod__(other)

Callers 1

__truediv__Method · 0.95

Calls 1

__divmod__Method · 0.95

Tested by

no test coverage detected