MCPcopy Index your code
hub / github.com/python/cpython / verify_request

Method verify_request

Lib/socketserver.py:332–338  ·  view source on GitHub ↗

Verify the request. May be overridden. Return True if we should proceed with this request.

(self, request, client_address)

Source from the content-addressed store, hash-verified

330 pass
331
332 def verify_request(self, request, client_address):
333 """Verify the request. May be overridden.
334
335 Return True if we should proceed with this request.
336
337 """
338 return True
339
340 def process_request(self, request, client_address):
341 """Call finish_request.

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected