MCPcopy
hub / github.com/aio-libs/aiohttp / start

Method start

aiohttp/web_reqrep.py:681–687  ·  view source on GitHub ↗
(self, request)

Source from the content-addressed store, hash-verified

679 return
680
681 def start(self, request):
682 warnings.warn('use .prepare(request) instead', DeprecationWarning)
683 resp_impl = self._start_pre_check(request)
684 if resp_impl is not None:
685 return resp_impl
686
687 return self._start(request)
688
689 @asyncio.coroutine
690 def prepare(self, request):

Callers 1

test_start_twiceFunction · 0.95

Calls 2

_start_pre_checkMethod · 0.95
_startMethod · 0.95

Tested by 1

test_start_twiceFunction · 0.76