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

Function test_funcname_multipledispatch

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

funcnameFunction · 0.90

Tested by

no test coverage detected