MCPcopy Index your code
hub / github.com/rawpython/remi / __delitem__

Method __delitem__

remi/gui.py:245–250  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

243 return ret
244
245 def __delitem__(self, key):
246 if key not in self:
247 return
248 ret = super(_EventDictionary, self).__delitem__(key)
249 self.onchange()
250 return ret
251
252 def pop(self, key, d=None):
253 if key not in self:

Callers

nothing calls this directly

Calls 1

onchangeMethod · 0.95

Tested by

no test coverage detected