MCPcopy Create free account
hub / github.com/DeepGraphLearning/graphvite / signature

Function signature

python/graphvite/helper.py:26–33  ·  view source on GitHub ↗
(name, *args)

Source from the content-addressed store, hash-verified

24
25
26def signature(name, *args):
27 strings = [name]
28 for arg in args:
29 if isinstance(arg, lib.dtype):
30 strings.append(lib.dtype2name[arg])
31 else:
32 strings.append(str(arg))
33 return "_".join(strings)
34
35
36def find_all_names(module):

Callers 1

__new__Method · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected