MCPcopy
hub / github.com/tornadoweb/tornado / _parse_body

Method _parse_body

tornado/httputil.py:623–633  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

621 return None
622
623 def _parse_body(self) -> None:
624 parse_body_arguments(
625 self.headers.get("Content-Type", ""),
626 self.body,
627 self.body_arguments,
628 self.files,
629 self.headers,
630 )
631
632 for k, v in self.body_arguments.items():
633 self.arguments.setdefault(k, []).extend(v)
634
635 def __repr__(self) -> str:
636 attrs = ("protocol", "host", "method", "uri", "version", "remote_ip")

Callers 2

finishMethod · 0.80
_executeMethod · 0.80

Calls 3

parse_body_argumentsFunction · 0.85
itemsMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected