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

Method params

thirdparty/bottle/bottle.py:1643–1651  ·  view source on GitHub ↗

A :class:`FormsDict` with the combined values of :attr:`query` and :attr:`forms`. File uploads are stored in :attr:`files`.

(self)

Source from the content-addressed store, hash-verified

1641
1642 @DictProperty('environ', 'bottle.request.params', read_only=True)
1643 def params(self):
1644 """ A :class:`FormsDict` with the combined values of :attr:`query` and
1645 :attr:`forms`. File uploads are stored in :attr:`files`. """
1646 params = FormsDict()
1647 for key, value in self.query.allitems():
1648 params[key] = value
1649 for key, value in self.forms.allitems():
1650 params[key] = value
1651 return params
1652
1653 @DictProperty('environ', 'bottle.request.files', read_only=True)
1654 def files(self):

Callers

nothing calls this directly

Calls 2

FormsDictClass · 0.85
allitemsMethod · 0.80

Tested by

no test coverage detected