MCPcopy Index your code
hub / github.com/secdev/scapy / __init__

Method __init__

scapy/dadict.py:76–80  ·  view source on GitHub ↗
(self, _name="DADict", **kargs)

Source from the content-addressed store, hash-verified

74 __slots__ = ["_name", "d"]
75
76 def __init__(self, _name="DADict", **kargs):
77 # type: (str, **Any) -> None
78 self._name = _name
79 self.d = {} # type: Dict[_K, _V]
80 self.update(kargs) # type: ignore
81
82 def ident(self, v):
83 # type: (_V) -> str

Callers

nothing calls this directly

Calls 1

updateMethod · 0.95

Tested by

no test coverage detected