MCPcopy Create free account
hub / github.com/dabeaz-course/python-mastery / recv

Method recv

Solutions/8_6/asyncserver.py:43–45  ·  view source on GitHub ↗
(self, maxsize)

Source from the content-addressed store, hash-verified

41
42 @coroutine
43 def recv(self, maxsize):
44 yield 'recv', self.sock
45 return self.sock.recv(maxsize)
46
47 @coroutine
48 def send(self, data):

Callers 1

echo_handlerFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected