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

Function test_funcname_multipledispatch

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

funcnameFunction · 0.90

Tested by

no test coverage detected