MCPcopy Create free account
hub / github.com/sqlmapproject/sqlmap / pairs

Method pairs

thirdparty/clientform/clientform.py:1267–1270  ·  view source on GitHub ↗

Return list of (key, value) pairs suitable for passing to urlencode.

(self)

Source from the content-addressed store, hash-verified

1265 def __setattr__(self, name, value): raise NotImplementedError()
1266
1267 def pairs(self):
1268 """Return list of (key, value) pairs suitable for passing to urlencode.
1269 """
1270 return [(k, v) for (i, k, v) in self._totally_ordered_pairs()]
1271
1272 def _totally_ordered_pairs(self):
1273 """Return list of (key, value, index) tuples.

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected