MCPcopy Create free account
hub / github.com/secdev/scapy / __delitem__

Method __delitem__

scapy/fields.py:126–130  ·  view source on GitHub ↗
(self, key)

Source from the content-addressed store, hash-verified

124 super(ObservableDict, self).__setitem__(key, value)
125
126 def __delitem__(self, key):
127 # type: (int) -> None
128 for o in self.observers:
129 o.notify_del(self, key)
130 super(ObservableDict, self).__delitem__(key)
131
132 def update(self, anotherDict): # type: ignore
133 for k in anotherDict:

Callers

nothing calls this directly

Calls 1

notify_delMethod · 0.80

Tested by

no test coverage detected