MCPcopy Index your code
hub / github.com/python/cpython / items

Method items

Lib/weakref.py:366–370  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

364 return wr in self.data
365
366 def items(self):
367 for wr, value in self.data.copy().items():
368 key = wr()
369 if key is not None:
370 yield key, value
371
372 def keys(self):
373 for wr in self.data.copy():

Callers 10

copyMethod · 0.45
__deepcopy__Method · 0.45
itemsMethod · 0.45
keysMethod · 0.45
updateMethod · 0.45
copyMethod · 0.45
__deepcopy__Method · 0.45
valuesMethod · 0.45
updateMethod · 0.45
_select_for_exitMethod · 0.45

Calls 1

copyMethod · 0.45

Tested by

no test coverage detected