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

Method __setitem__

thirdparty/clientform/clientform.py:2907–2912  ·  view source on GitHub ↗
(self, name, value)

Source from the content-addressed store, hash-verified

2905 def __contains__(self, name):
2906 return bool(self.find_control(name))
2907 def __setitem__(self, name, value):
2908 control = self.find_control(name)
2909 try:
2910 control.value = value
2911 except AttributeError as e:
2912 raise ValueError(str(e))
2913
2914 def get_value(self,
2915 name=None, type=None, kind=None, id=None, nr=None,

Callers

nothing calls this directly

Calls 1

find_controlMethod · 0.95

Tested by

no test coverage detected