MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / __setitem__

Method __setitem__

thirdparty/bottle/bottle.py:2644–2645  ·  view source on GitHub ↗
(self, key, value)

Source from the content-addressed store, hash-verified

2642 return self.dict[_hkey(key)][-1]
2643
2644 def __setitem__(self, key, value):
2645 self.dict[_hkey(key)] = [_hval(value)]
2646
2647 def append(self, key, value):
2648 self.dict.setdefault(_hkey(key), []).append(_hval(value))

Callers

nothing calls this directly

Calls 2

_hkeyFunction · 0.85
_hvalFunction · 0.85

Tested by

no test coverage detected