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

Function dictitems

dask/bag/core.py:1843–1849  ·  view source on GitHub ↗

A pickleable version of dict.items >>> dictitems({'x': 1}) [('x', 1)]

(d)

Source from the content-addressed store, hash-verified

1841
1842
1843def dictitems(d):
1844 """A pickleable version of dict.items
1845
1846 >>> dictitems({'x': 1})
1847 [('x', 1)]
1848 """
1849 return list(d.items())
1850
1851
1852def concat(bags):

Callers

nothing calls this directly

Calls 1

itemsMethod · 0.45

Tested by

no test coverage detected