627
624
_DEFAULT_TESTING_CLIENT_TIMEOUT = 60.0
630
626
class TestingSmartServer(TestingThreadingTCPServer, server.SmartTCPServer):
632
628
def __init__(self, server_address, request_handler_class,
633
629
backing_transport, root_client_path):
634
630
TestingThreadingTCPServer.__init__(self, server_address,
638
633
root_client_path, client_timeout=_DEFAULT_TESTING_CLIENT_TIMEOUT)