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

Method clear_all

thirdparty/clientform/clientform.py:2987–2994  ·  view source on GitHub ↗

Clear the value attributes of all controls in the form. See HTMLForm.clear.__doc__.

(self)

Source from the content-addressed store, hash-verified

2985 control.readonly = bool(readonly)
2986
2987 def clear_all(self):
2988 """Clear the value attributes of all controls in the form.
2989
2990 See HTMLForm.clear.__doc__.
2991
2992 """
2993 for control in self.controls:
2994 control.clear()
2995
2996 def clear(self,
2997 name=None, type=None, kind=None, id=None, nr=None, label=None):

Callers

nothing calls this directly

Calls 1

clearMethod · 0.45

Tested by

no test coverage detected