MCPcopy Create free account
hub / github.com/dask/dask / divmod

Function divmod

dask/array/_array_expr/_ufunc.py:343–346  ·  view source on GitHub ↗
(x, y)

Source from the content-addressed store, hash-verified

341
342@derived_from(np)
343def divmod(x, y):
344 res1 = x // y
345 res2 = x % y
346 return res1, res2

Callers 3

__divmod__Method · 0.90
__rdivmod__Method · 0.90
test_divmodFunction · 0.50

Calls

no outgoing calls

Tested by 1

test_divmodFunction · 0.40