MCPcopy Index your code
hub / github.com/RustPython/RustPython / handle_request

Method handle_request

Lib/multiprocessing/managers.py:229–239  ·  view source on GitHub ↗

Handle a new connection

(self, conn)

Source from the content-addressed store, hash-verified

227 util.info(' ... exception was %r', e)
228
229 def handle_request(self, conn):
230 '''
231 Handle a new connection
232 '''
233 try:
234 self._handle_request(conn)
235 except SystemExit:
236 # Server.serve_client() calls sys.exit(0) on EOF
237 pass
238 finally:
239 conn.close()
240
241 def serve_client(self, conn):
242 '''

Callers 2

simple_server.pyFile · 0.45
serve_until_stoppedMethod · 0.45

Calls 2

_handle_requestMethod · 0.95
closeMethod · 0.45

Tested by

no test coverage detected