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

Method pop

Lib/weakref.py:404–405  ·  view source on GitHub ↗
(self, key, *args)

Source from the content-addressed store, hash-verified

402 return o, value
403
404 def pop(self, key, *args):
405 return self.data.pop(ref(key), *args)
406
407 def setdefault(self, key, default=None):
408 return self.data.setdefault(ref(key, self._remove),default)

Callers 4

popMethod · 0.45
__call__Method · 0.45
detachMethod · 0.45
_exitfuncMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected