MCPcopy Index your code
hub / github.com/dask/dask / test_funcname_multipledispatch

Function test_funcname_multipledispatch

dask/tests/test_utils.py:461–469  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

459
460
461def test_funcname_multipledispatch():
462 md = pytest.importorskip("multipledispatch")
463
464 @md.dispatch(int, int, int)
465 def foo(a, b, c):
466 pass
467
468 assert funcname(foo) == "foo"
469 assert funcname(functools.partial(foo, a=1)) == "foo"
470
471
472def test_funcname_numpy_vectorize():

Callers

nothing calls this directly

Calls 1

funcnameFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…