MCPcopy Index your code
hub / github.com/numpy/numpy / dict_append

Function dict_append

numpy/f2py/f2py2e.py:416–423  ·  view source on GitHub ↗
(d_out, d_in)

Source from the content-addressed store, hash-verified

414
415
416def dict_append(d_out, d_in):
417 for (k, v) in d_in.items():
418 if k not in d_out:
419 d_out[k] = []
420 if isinstance(v, list):
421 d_out[k] = d_out[k] + v
422 else:
423 d_out[k].append(v)
424
425
426def run_main(comline_list):

Callers 2

buildmodulesFunction · 0.85
run_mainFunction · 0.85

Calls 1

itemsMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…