MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / items

Method items

tools/python-3.11.9-amd64/Lib/weakref.py:209–216  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

207 return o
208
209 def items(self):
210 if self._pending_removals:
211 self._commit_removals()
212 with _IterationGuard(self):
213 for k, wr in self.data.items():
214 v = wr()
215 if v is not None:
216 yield k, v
217
218 def keys(self):
219 if self._pending_removals:

Callers

nothing calls this directly

Calls 3

_commit_removalsMethod · 0.95
_IterationGuardClass · 0.90
itemsMethod · 0.45

Tested by

no test coverage detected