14 """Test-appropriate entry points into the gRPC Python Beta API."""
21 server_host_override):
22 """Creates an insecure Channel to a remote host.
25 host: The name of the remote host to which to connect.
26 port: The port of the remote host to which to connect.
27 channel_credentials: The implementations.ChannelCredentials with which to
29 server_host_override: The target name used for SSL host name checking.
32 An implementations.Channel to the remote host through which RPCs may be
35 target =
'%s:%d' % (host, port)
37 'grpc.ssl_target_name_override',
40 return implementations.Channel(channel)