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

Method body

thirdparty/bottle/bottle.py:1760–1767  ·  view source on GitHub ↗

The HTTP request body as a seek-able file-like object. Depending on :attr:`MEMFILE_MAX`, this is either a temporary file or a :class:`io.BytesIO` instance. Accessing this property for the first time reads and replaces the ``wsgi.input`` environ variable.

(self)

Source from the content-addressed store, hash-verified

1758
1759 @property
1760 def body(self):
1761 """ The HTTP request body as a seek-able file-like object. Depending on
1762 :attr:`MEMFILE_MAX`, this is either a temporary file or a
1763 :class:`io.BytesIO` instance. Accessing this property for the first
1764 time reads and replaces the ``wsgi.input`` environ variable.
1765 Subsequent accesses just do a `seek(0)` on the file object. """
1766 self._body.seek(0)
1767 return self._body
1768
1769 @property
1770 def chunked(self):

Callers

nothing calls this directly

Calls 1

seekMethod · 0.45

Tested by

no test coverage detected