MCPcopy Create free account
hub / github.com/ActiveState/code / __delitem__

Method __delitem__

recipes/Python/475113_HTML_Help/recipe-475113.py:206–208  ·  view source on GitHub ↗

x.__delitem__(y) <==> del x[y]

(self, key)

Source from the content-addressed store, hash-verified

204 self.__data[key] = array(len(self.__data[key]), value)
205
206 def __delitem__(self, key):
207 '''x.__delitem__(y) <==> del x[y]'''
208 self.__data[key] = array(len(self.__data[key]))
209
210 def __iter__(self):
211 '''x.__iter__() <==> iter(x)'''

Callers

nothing calls this directly

Calls 1

arrayClass · 0.70

Tested by

no test coverage detected