MCPcopy Index your code
hub / github.com/clips/pattern / popitem

Method popitem

pattern/text/search.py:227–228  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

225 return dict.pop(self, k, *args, **kwargs)
226
227 def popitem(self):
228 k=self._o[-1] if self._o else None; return (k, self.pop(k))
229
230 def clear(self):
231 self._o=[]; dict.clear(self)

Callers

nothing calls this directly

Calls 1

popMethod · 0.95

Tested by

no test coverage detected