MCPcopy Create free account
hub / github.com/EasyIME/PIME / finish

Method finish

python/python3/tornado/web.py:2316–2322  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2314 return None
2315
2316 def finish(self) -> None:
2317 if self.stream_request_body:
2318 future_set_result_unless_cancelled(self.request._body_future, None)
2319 else:
2320 self.request.body = b"".join(self.chunks)
2321 self.request._parse_body()
2322 self.execute()
2323
2324 def on_connection_close(self) -> None:
2325 if self.stream_request_body:

Callers

nothing calls this directly

Calls 4

executeMethod · 0.95
joinMethod · 0.80
_parse_bodyMethod · 0.80

Tested by

no test coverage detected